I have class with virtual init() function which is defined in derived class, and other function initializing this class and calling init function. How to name this other function?
I tried something like doInit but it looks like private function. init function name cannot be changed.
public:
bool myclass::this_other_function_init( params )
{
systemInit(this);
init();
...
return true;
}
virtual init() = 0;
Private method naming convention - this topic shows great how to name private method, but now I have to do opposite name public method.
EDIT: how do you name your Initialization functions? init, initialize, start....etc ???