36
edits
Changes
no edit summary
# Names should be readable, better to do not use abbreviations
# "Camel" case [https://en.wikipedia.org/wiki/CamelCase CamelCase] for names (for example, AuditValue)# . Class, namespace, enum names should start with uppercase (for example, Audit). Other names should start with lowercase (Audit->getValue())
# Typedefs should have "_t" or "_type" suffix (myFavoriteType_t)
# Member value should have "m_" prefix (m_store)