Skip to content
Adam Heinermann edited this page Feb 1, 2014 · 5 revisions

Spacing

Naming Conventions

  • Functions and variables: Lower Camel Case.
  • Class data members prefixed with m_.
  • Recursive function ends with _r.
  • Global scope variables start with g_.
  • Constants are all uppercase with underscore separation (SAMPLE_CONSTANT).
  • Enumeration values are considered constants.

Documentation

Coding

Clone this wiki locally