Changes

Jump to: navigation, search

Team L - OOP344 20133

199 bytes added, 17:26, 17 October 2013
Coding Style and Standards
== Coding Style and Standards ==
=== Indentation === * No Tab Character allowed. (replace tabs with 2 spaces)* 2 spaces for indentation=== Blocks ===<big><syntaxhighlight lang="cpp">if(condition) { whatever;}</syntaxhighlight></big>=== Variable Naming ===
* Each object must have its own type:
<big><syntaxhighlight lang="cpp">
CDialog D;
</syntaxhighlight></big>
=== Class Naming ===
* Use the class name for the name of the file but make sure it is all lowercase:
<big><syntaxhighlight lang="cpp">

Navigation menu