File tree Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Expand file tree Collapse file tree 1 file changed +6
-1
lines changed Original file line number Diff line number Diff line change 96
96
Guidelines] ( https://isocpp.github.io/CppCoreGuidelines/CppCoreGuidelines#Renum-caps ) ,
97
97
which recommend using ` snake_case ` . Please use what seems appropriate.
98
98
- Class names, function names, and method names are UpperCamelCase
99
- (PascalCase). Do not prefix class names with ` C ` .
99
+ (PascalCase). Do not prefix class names with ` C ` . See [ Internal interface
100
+ naming style] ( #internal-interface-naming-style ) for an exception to this
101
+ convention.
102
+
100
103
- Test suite naming convention: The Boost test suite in file
101
104
` src/test/foo_tests.cpp ` should be named ` foo_tests ` . Test suite names
102
105
must be unique.
@@ -1416,6 +1419,8 @@ communication:
1416
1419
virtual bool disconnect(NodeId id) = 0;
1417
1420
```
1418
1421
1422
+ ### Internal interface naming style
1423
+
1419
1424
- For consistency and friendliness to code generation tools, interface method
1420
1425
names should be `lowerCamelCase` and standalone function names should be
1421
1426
`UpperCamelCase`.
You can’t perform that action at this time.
0 commit comments