1 These are a few style guidelines of my own that I try to adhere to.
2 This is in a very short form as it's mostly for myself.
6 - Public_Class_Variable
7 - protected_Class_Variable
8 - private_Class_Variable
11 - variable_Local_To_File
12 - methodName, class or file
16 - prefix consts with c, camel -> cName, under -> c_Name
19 - sections of a file should be commented with the following where appropriate
20 - they should appear in this order
21 - they should have a newline above and below star lines
24 /// ***** Header Class *****
25 /// ***** Header Methods *****
28 /// ***** Private Method Headers *****
29 /// ***** Private Variables *****
31 /// ***** MAIN Method *****
33 /// ***** Constructors/Destructors *****
34 /// ***** Initializers/Cleaners *****
36 /// ***** Public Class Methods *****
37 /// ***** Protected Class Methods *****
38 /// ***** Private Class Methods *****
40 /// ***** Public Methods *****
41 /// ***** Private Methods *****