User profile: Kip

User info
User name:Kip
History
Joined:
Number of posts:16
Latest posts:

Initialization of base class in derived's copy constructor initialization list
Thanks folks. I suspected that it was a best practise to invoke the base class constructor in the de...

Initialization of base class in derived's copy constructor initialization list
Compiling the following minimal.cpp with g++ 6.3.0 like so: $ g++ -Wall -Werror=extra minimal.c...

How to pass a method of derived class as parameter to another method in base class
Thank you JLBorges. That is a much better solution than the one I was trying. This way one can use l...

How to pass a method of derived class as parameter to another method in base class
Hey friends, I have a question similar to the one here: http://www.cplusplus.com/forum/general/39...

Logger Class
Sure. Here's the whole code: [code] #include <iostream> #include <string> #include <ostream> ...