Code style
Tabs & spacing
- Hard tabs, 4-space aligned.
- Inner spaces after tabs to align arguments on multiple lines, etc
Constants
- Prefer static const over #define wherever possible
Name style
- Classes: FooBar
- Methods: FooBar
- Class members: m_fooBar
- Static members: s_fooBar
- Constants: FOO_BAR