Skip to content
ricardo kloss edited this page Nov 21, 2015 · 6 revisions

We use the google C++ Style Guide Check the following link for more information. For configurating it on Visual Studio the following link might be helpful: msvc-setup

As a side note we deviate from the original style guide in the following:

  • We allow passing of arguments by non-const-reference
  • The naming of member variables i prefixed by a 'm' instead of sufixed by a '-'
  • Lower Camel Case is used for variables and functions
  • Upper Camel Case is used for classes and types