1
edit
Changes
→Coding Style and Standards
== Coding Style and Standards ==
* '''No Tab Character ''' allowed. (replace tabs with spaces)* Tab Size = 3 spaces (To reformat tabs into spaces change VS settings and press ctrl+k+d)
* Each object must have its own type:
<big><syntaxhighlight lang="cpp">
CDialog D;
</syntaxhighlight></big>
== Repository ==