If in C++ I have a class longUnderstandableName
. For that class I have a header file containing its method declaration. In the source file for the class, I have to write longUnderstandableName::MethodA
, longUnderstandableName::MethodB
and so on, everywhere.
Can I somehow make use of namespaces or something else so I can just write MethodA
and MethodB
, in the class source file, and only there?