1
edit
Changes
→Coding Style and Standards
CDialog D;
</syntaxhighlight></big>
<big><syntaxhighlight lang="cpp">
if(a == b) {//There should be a space between each meaningful variable and operator and so on
x = y * z; // 2 spaces for indentation
}
public:
int _a; // member variables should start with an underscore
int _arraySize ; // use meaningful names for variables when applicable and use camel notation
char* _pArray; // pointers should have '*' part of the type
};
* For the safeguard for header files, we will use the following:
<big><syntaxhighlight lang="cpp">
H_FILENAME_H_
</syntaxhighlight></big>
== Team Members ==