1
edit
Changes
→Coding Style and Standards
== Coding Style and Standards ==
* No Tab Character allowed. (replace tabs with spaces)
* Tab size = 4 spaces
* Each object must have its own type:
<big><syntaxhighlight lang="cpp">
int b;
CDialog D;
</syntaxhighlight></big>
*Scope brackets open under statement:
<big><syntaxhighlight lang="cpp">
if(heehaw)
{
cout<<"hoohoo"<<endl;
}
</syntaxhighlight></big>