Changes

Jump to: navigation, search

Team Q - OOP344 20133

178 bytes added, 13:06, 20 October 2013
Coding Style and Standards
== Coding Style and Standards ==
* Tab's are allowed in the code( Please set your tab size to 3 and also your indent size to 3 )
* Each object and variable must have its own type to make it as clear as possible
CDialog D;
</syntaxhighlight>
 
* Pointer *
<syntaxhighlight lang="cpp">
Is Accepted int* number;
Not Accepted int *number;
</syntaxhighlight>
 
* Formatting of condition blocks
<syntaxhighlight lang="cpp">

Navigation menu