ServerApplication inherited from Application. Application has method const char* name () const :
const char* Application::name() const
{
return "Application";
}
Why this method returns constant "Application" ?
I thought that, this function must return the name of my application which set in config or other function.





