Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 1855 in orxonox.OLD for orxonox/trunk/doc/CODING-STANDARDS


Ignore:
Timestamp:
May 5, 2004, 9:34:21 AM (21 years ago)
Author:
patrick
Message:

/orxonox/trunk/core/ modifications on world and docs

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/doc/CODING-STANDARDS

    r1853 r1855  
     1
     2
     3
     41.Coding Conventions
     52.How to format your Code
     6
     71.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
     12a) in every code file, there has to be a GNU copyright header
     13b) under the (c) header write your name as main-programmer, if
     14   you are just bugfixing or extending write it under co-programmer
     15c) 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
     262.How to format your Code
     27-------------------------
    128We use the GNU conding convention (which is also used in xemacs etc.):
    229
Note: See TracChangeset for help on using the changeset viewer.