Changes between Version 29 and Version 30 of MapGuideCodingStandards
- Timestamp:
- 08/01/11 09:54:57 (13 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
MapGuideCodingStandards
v29 v30 771 771 }}} 772 772 773 You will notice that the 1st letter of each word is part of the enumeration value. 774 Also, when using enumerations in your code ALWAYS do the following: 775 {{{ 776 #!cpp 777 ConnectionState::mcsOpen 778 }}} 779 Do NOT do the following: 780 {{{ 781 #!cpp 782 mcsOpen 783 }}} 773 Notice that an abbreviated lower-case form of the enumeration name is prepended to each item in the enumerator list. 784 774 785 775 == Parentheses ==