RidgeRun Developer Manual/Coding Styles/C++: Difference between revisions

Line 180: Line 180:
};
};
</syntaxhighlight>
</syntaxhighlight>
=== Namespaces ===
Namespace names are snake_case (all lower-case, with words separated by underscores). Top-level namespace names are based on the project name. See [https://google.github.io/styleguide/cppguide.html#Namespace_Names here] for more information.


=== Method/function naming standard ===
=== Method/function naming standard ===