MyCode:
#include "YourClass.h"
class MyClass
{
public:
void doThis()
{
YourClass::doThis();
}
void doThat()
{
YourClass::doThat();
}
void doSomething()
{
YourClass::doSomething();
}
};
Is it possible to simplify the static member function calling so I don't have to re-write YourClass::
whenever I call its static members?
Or is it a better practice to leave it like it is?