1
edit
Changes
→Coding Style and Standards
== Coding Style and Standards ==
=== Indentation === * No Tab Character allowed. (replace tabs with 2 spaces)* 2 spaces for indentation=== Blocks ===<big><syntaxhighlight lang="cpp">if(condition) { whatever;}</syntaxhighlight></big>=== Variable Naming ===
* Each object must have its own type:
<big><syntaxhighlight lang="cpp">
CDialog D;
</syntaxhighlight></big>
=== Class Naming ===
* Use the class name for the name of the file but make sure it is all lowercase:
<big><syntaxhighlight lang="cpp">