Coding Style - mlwong/HAMeRS GitHub Wiki
Programming language
We use C++ with the C++11 standard as the programming language for the code.
Naming convention
It is recommended to use:
UpperCamelCasefor class nameslowerCamelCasefor methods and functionsCAPITALIZED_WITH_UNDERSCORESfor constantslowercase_separated_by_underscoresfor variable namesUpperCamelCasefor file nameslowercase_separated_by_underscoresfor folder names
Indentation
4 spaces of indentation, and no tab characters should be used.
Comments
A single line above the code is recommended. Add full stop at the end of each comment.