1
edit
Changes
→Coding Style and Standards
== Coding Style and Standards ==
* No tab characters allowed.
* Indents composed of '''4''' spaces:<syntaxhighlight lang="cpp">int method(bool _condition) { if (!_condition) { return 0; } else { cout << _condition << endl; return _condition; }}</syntaxhighlight>.* Each object must have its own typebe declared separately:
<syntaxhighlight lang="cpp">
int a;
int b;
CDialog D;
</syntaxhighlight>
* Parameter variables indicated by underline prefix: