]> git.lyx.org Git - lyx.git/blobdiff - development/coding/Rules
Another (IMHO false) fall-through warning silenced
[lyx.git] / development / coding / Rules
index 558449c8d7bbe66e08b129cf6fe158828b12b94f..9fb464c16ce9457c9d08d37447ca63214ddd52f0 100644 (file)
@@ -289,6 +289,10 @@ Formatting
   - Members variables are underscored ('enable_this_feature_flag_') with a final '_'
   
   - private/protected functions are also camel-case
+  
+  - Each class is implemented in a separate pair of .h/.cpp files named like
+    the class. Exceptions are tiny helper classes which are closely tied to
+    the main class.
 
 
   New types are capitalized, so this goes for typedefs, classes, structs