Changes

Jump to: navigation, search

Team O - OOP344 20133

167 bytes added, 13:18, 29 October 2013
Coding Style and Standards
== Coding Style and Standards ==
* No Tab Character allowed. (replace tabs with spaces)
* Tab size = 4 spaces
* Each object must have its own type:
<big><syntaxhighlight lang="cpp">
int b;
CDialog D;
</syntaxhighlight></big>
 
*Scope brackets open under statement:
 
<big><syntaxhighlight lang="cpp">
if(heehaw)
{
cout<<"hoohoo"<<endl;
}
</syntaxhighlight></big>

Navigation menu