Code Style - PO-21/QtReports GitHub Wiki

  • Used standard: C++11.

  • Files format: lowercase.hpp/lowercase.cpp

  • Files endl(For diff): Unix format("\n")

  • Methods names: Class::getValue()

  • Private/protected class variables: VariableType m_variableName

  • Tab: no, only spaces.

  • Mandatory inclusion in braces single operator: if ( true ) { do(); }

  • etc.