1
edit
Changes
→Coding Style and Standards
== Coding Style and Standards ==
* No Tab Character 's are allowed. (replace tabs with spaces)in the code * Each object must have its own type:to make it as clear as possible
<big><syntaxhighlight lang="cpp">
int a;
int b;
CDialog D;
</syntaxhighlight></big>
* Formatting of condition blocks
<big><syntaxhighlight lang="cpp">
if (condition)
{
doStuff;
}
else
{
doOtherStuff;
}
for (x=0;x<5;x++)
{
loopStuff;
}
</syntaxhighlight></big>