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 and enum values are all uppercase with underscore separation (SAMPLE_CONSTANT).

Documentation

  • Use comments to make clarifications, mark TODOs, and make NOTEs.

Coding

Clone this wiki locally