Changes

Jump to: navigation, search

Team E - OOP344 20133

335 bytes removed, 19:00, 20 October 2013
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>
* Local/global variables:
<syntaxhighlight lang="cpp">
int var1 = 10;
double var2 = 99.99;
char* var3 = "String";
</syntaxhighlight>
* Parameter variables indicated by underline prefix:

Navigation menu