frameround=fttt, language=C++
1#1
Compared to:
2#2
The major advantage modifying class names with a prefix such as C is that you can then use the class name without the prefix as a variable name. How often have you named a class one thing, say line, then when you create some objects you end up mangling line to be lin, aline, line1, Line, lne, etc. If you prefix your class name you can name your variables naturally, in the case of CLine: Line, LineA, LineB, etc.