Changes

Jump to: navigation, search

Team Q - OOP344 20133

201 bytes added, 11:32, 20 October 2013
Coding Style and Standards
== Coding Style and Standards ==
* No Tab Character 's are allowed. (replace tabs with spaces)in the code * Each object must have its own type:to make it as clear as possible
<big><syntaxhighlight lang="cpp">
int a;
int b;
CDialog D;
</syntaxhighlight></big>
* Formatting of condition blocks
<big><syntaxhighlight lang="cpp">
if (condition)
{
doStuff;
}
else
{
doOtherStuff;
}
 
for (x=0;x<5;x++)
{
loopStuff;
}
</syntaxhighlight></big>

Navigation menu