1
edit
Changes
→Coding Style and Standards
* Each object and variable must have its own type to make it as clear as possible
int a;
int b;
CDialog D;
</syntaxhighlight></big>
* Formatting of condition blocks
if (condition)
{
loopStuff;
}
</syntaxhighlight></big>
* File Heading Comments
/*
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
if (blahblah = 50)
{
}
</syntaxhighlight></big>
== Team Members ==