Changeset 1855 in orxonox.OLD for orxonox/trunk/doc/CODING-STANDARDS
- Timestamp:
- May 5, 2004, 9:34:21 AM (21 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/doc/CODING-STANDARDS
r1853 r1855 1 2 3 4 1.Coding Conventions 5 2.How to format your Code 6 7 1.Coding Conventions 8 -------------------- 9 ==> If you are beginning a new code-file: copy the proto_class.{cc,h} 10 ==> and work with these files. 11 12 a) in every code file, there has to be a GNU copyright header 13 b) under the (c) header write your name as main-programmer, if 14 you are just bugfixing or extending write it under co-programmer 15 c) Every function has a header with informations about it: 16 /** 17 \brief <a brief description> 18 \param <parameters the function needs> 19 \param <more parameters> 20 21 <more description> 22 */ 23 This makes live easier, if we want to add a documentation. 24 25 26 2.How to format your Code 27 ------------------------- 1 28 We use the GNU conding convention (which is also used in xemacs etc.): 2 29
Note: See TracChangeset
for help on using the changeset viewer.