Skip to content

Commit

Permalink
Update casing styles.
Browse files Browse the repository at this point in the history
  • Loading branch information
Pavel Kovalenko committed Oct 3, 2014
1 parent 6f8bb70 commit 3d82f83
Showing 1 changed file with 3 additions and 2 deletions.
5 changes: 3 additions & 2 deletions doc/procedure/cpp_code.txt
Original file line number Diff line number Diff line change
Expand Up @@ -424,9 +424,10 @@ Naming conventions:
Casing styles:
- class/struct/enum: PascalCase
- Math primitives can be in lowercase: vector2f, angle3f, matrix44f
- Public members: PascalCase
- Functions: PascalCase
- Public and protected fields: PascalCase
- Math primitives can use lowercase: vector2f.x, angle3f.yaw, matrix44f.m03
- Private members: camelCase
- Private fields: camelCase
- Local variables: camelCase
- Global variables: PascalCase
- Namespaces: PascalCase
Expand Down

0 comments on commit 3d82f83

Please sign in to comment.