1
edit
Changes
→Coding Style and Standards
<syntaxhighlight lang="cpp">
a=b+c;
</syntaxhighlight>
*Header Files and Class/Struct Formatting
<syntaxhighlight lang="cpp">
#ifndef __TEAMQ_FILENAME_H__ // Safeguard
#define __TEAMQ_FILENAME_H__
class example
{
private:
int var1;
int* var2;
public:
void display();
};
void example::display()
{
a=var1+var2;
}
#endif
</syntaxhighlight>