Changes

Jump to: navigation, search

Team Q - OOP344 20133

46 bytes removed, 12:51, 20 October 2013
Coding Style and Standards
* Each object and variable 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)
{
loopStuff;
}
</syntaxhighlight></big>
* File Heading Comments
<big><syntaxhighlight lang="cpp">
/*
filename.cpp (or .h) OOP344x (x for Section)
Date Modified: Month, Day, Year
*/
</syntaxhighlight></big>
Comments in Code
* placed above each function, gives a short description of purpose
* comment any large blocks or complex code to the right of above your code
For Example
<big><syntaxhighlight lang="cpp"> 
if (blahblah = 50)
{
do1; // will perform this do2do1; // will perform that do3do2; // will perform whatever do3;
}
</syntaxhighlight></big>
== Team Members ==

Navigation menu