Changes

Jump to: navigation, search

C++ Code Style Guide

12 bytes added, 09:26, 16 June 2015
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)

Navigation menu