c++ Programming Glossary: longunderstandablename
C++: “Class namespaces”? http://stackoverflow.com/questions/4065563/c-class-namespaces &ldquo Class namespaces&rdquo If in C I have a class longUnderstandableName . For that class I have a header file containing its method.. In the source file for the class I have to write longUnderstandableName MethodA longUnderstandableName MethodB and so on everywhere... the class I have to write longUnderstandableName MethodA longUnderstandableName MethodB and so on everywhere. Can I somehow make use of namespaces..
|