You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I think the main rules are: (@BertHeesakkers am I right?) Barces
Use a new line braces for code blocks: Wrong:
className {}
Correct:
className
{
[...]
}
Variables naming
Member function or function arguments in general are having the prefix: a_
Member function or function arguments using Upper Camel Case
Member variables use the prefix m_
Member variables are following the Upper Camel Case rule
Global variables have the prefix g_
Global variables are following the Upper Camel Case rule as well
Local variables are following the Lower Camel Case rule
Naming in general
We are trying to give everything local and self-explanatory names so we do not need to add comments to understand the flow of the program.
Create a file outlining exactly how @BertHeesakkers wants his code to be formatted!
The text was updated successfully, but these errors were encountered: