I wonder where you can find the template interfaces.
eg. I create these classes that implement iLog:
DatabaseLog
ScreenLog
FileLog
I wonder what methods a regular log class should have?
There is a set of interfaces that you could just implement / learn, rather than reinvent the wheel and think about method names.
eg. Interfaces:
iLog
iDatabase
iErrorMessage
etc.
thank
source
share