Coding rules are important, and that's important to keep these rules during all the development.
For class member, keep the "m_" or just "m" front of variables.
Use "Set", "Get", "Count" and "Compute" in function's names.
Coding rules are important, and that's important to keep these rules during all the development.
For class member, keep the "m_" or just "m" front of variables.
Use "Set", "Get", "Count" and "Compute" in function's names.
Kryzon (4th March 2015)
Or you want to shorten the rebuild time (change in the class internals will require to rebuild only the class.cpp file). Very useful in large projects IMHO.pimpl is only really needed if you need platform-independent data or wanting to hide a lib data.
Bookmarks