1
edit
Changes
→Coding Style and Standards
CDialog D;
</syntaxhighlight></big>
General Rules:
- Indentation is 2 spaces long
<big><syntaxhighlight lang="cpp">
int i_swap_; // Data members naming: "type_name_"
/*Function Description*/
int functionName(...) {
// Adds ....
while (.... && .... || ....) { // Open Bracket is located after the code
int count; // variables's name relates to the purpose
} //END OF while
}
</syntaxhighlight></big>
-Comments at least one per function saying what it does.
== Team Members ==