Testing header numbers

This commit is contained in:
Anthony Thibault 2019-03-29 15:40:30 -07:00
parent 63db7efe7f
commit 3d719654e7

View file

@ -4,25 +4,25 @@ Note that the current code base does not necessarily follow this with 100% consi
Basically taken directly from [http://geosoft.no/development/cppstyle.html](http://geosoft.no/development/cppstyle.html) with some subtle changes and omissions. Basically taken directly from [http://geosoft.no/development/cppstyle.html](http://geosoft.no/development/cppstyle.html) with some subtle changes and omissions.
## 1. Naming ## [1.] Naming
### 1.1. General Naming Conventions ### [1.1.] General Naming Conventions
#### 1.1.1. Names representing types must be in mixed case starting with upper case. #### [1.1.1.] Names representing types must be in mixed case starting with upper case.
```cpp ```cpp
Coach, PenaltyBox Coach, PenaltyBox
``` ```
#### 1.1.2. Private class variables must be in mixed case prefixed with an underscore. #### [1.1.2.] Private class variables must be in mixed case prefixed with an underscore.
```cpp ```cpp
_puck, _team _puck, _team
``` ```
#### 1.1.3. Local variables must be in mixed case (and NOT prefixed with an underscore). #### [1.1.3] Local variables must be in mixed case (and NOT prefixed with an underscore).
```cpp ```cpp
redLine, icingFrequency redLine, icingFrequency