Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Changeset 3329 in orxonox.OLD


Ignore:
Timestamp:
Jan 4, 2005, 2:22:59 AM (19 years ago)
Author:
bensch
Message:

orxonox/trunk: modified Protoclass to doxygen-standards

Location:
orxonox/trunk/src
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/proto_class.cc

    r3245 r3329  
    2525/**
    2626   \brief standard constructor
    27 
    2827   \todo this constructor is not jet implemented - do it
    2928*/
     
    3332/**
    3433   \brief standard deconstructor
     34   \todo this deconstructor is not jet implemented - do it
    3535
    36    \todo this deconstructor is not jet implemented - do it
    3736*/
    3837ProtoClass::~ProtoClass () {}
     
    4443   \returns true or false - probably nothing?
    4544
    46    this is just to show the doxygen abilities
     45   this is just to show the doxygen abilities (this for example is an extension for a long comment)
    4746*/
    4847bool ProtoClass::doNonSense (int nothing) {}
  • orxonox/trunk/src/proto_class.h

    r3246 r3329  
    22    \file proto_class.h
    33    \brief Definition of the proto class template, used quickly start work
     4    \todo Example: this shows how to use simply add a Marker that here has to be done something.
     5
     6    The Protoclass exists, to help you quikly getting the run for how to develop in orxonox.
     7    It is an example for the CODING-CONVENTION, and a starting-point for every class.
    48*/
    5 
    69
    710#ifndef _PROTO_CLASS_H
     
    1215/*class Test;*/ /* forward definition of class Test (without including it here!)*/
    1316
     17//! A default class that aids you to start creating a new class
     18/**
     19   here can be some longer description of this class
     20*/
    1421class ProtoClass {
    1522
     
    2128
    2229 private:
    23   int nonSense;  //! doxygen tag here like this - delete this variable if you use this
     30  int nonSense;  //!< doxygen tag here like this for all the variables - delete this variable if you use this
    2431
    2532};
Note: See TracChangeset for help on using the changeset viewer.