User Tools

Site Tools


coding_style

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

Both sides previous revisionPrevious revision
Next revision
Previous revision
Next revisionBoth sides next revision
coding_style [2016/03/11 12:17] – [Naming] jmgrcoding_style [2016/03/11 12:36] – [Naming] jmgr
Line 53: Line 53:
 <code cpp> <code cpp>
 // Bad // Bad
-for(int i = 0; i < Ducks.size(); ++i)+for(int i = 0; i < ducks.size(); ++i)
 { {
     //...     //...
Line 59: Line 59:
  
 // Good // Good
-for(int duckIndex = 0; duckIndex < Ducks.size(); ++duckIndex)+for(int duckIndex = 0; duckIndex < ducks.size(); ++duckIndex)
 { {
     //...     //...
 } }
 +</code>
 +
 +**Variables representing GUI elements should be suffixed by their type**
 +<code cpp>
 +// Bad
 +QPushButton *exitApplication;
 +QLabel *duckCount;
 +
 +// Good
 +QPushButton *exitApplicationPushButton;
 +QLabel *duckCountLabel;
 </code> </code>
 ===== Code files ===== ===== Code files =====
coding_style.txt · Last modified: 2023/04/25 16:52 by 127.0.0.1