- Timestamp:
- Jan 4, 2005, 2:22:59 AM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/proto_class.cc
r3245 r3329 25 25 /** 26 26 \brief standard constructor 27 28 27 \todo this constructor is not jet implemented - do it 29 28 */ … … 33 32 /** 34 33 \brief standard deconstructor 34 \todo this deconstructor is not jet implemented - do it 35 35 36 \todo this deconstructor is not jet implemented - do it37 36 */ 38 37 ProtoClass::~ProtoClass () {} … … 44 43 \returns true or false - probably nothing? 45 44 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) 47 46 */ 48 47 bool ProtoClass::doNonSense (int nothing) {} -
orxonox/trunk/src/proto_class.h
r3246 r3329 2 2 \file proto_class.h 3 3 \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. 4 8 */ 5 6 9 7 10 #ifndef _PROTO_CLASS_H … … 12 15 /*class Test;*/ /* forward definition of class Test (without including it here!)*/ 13 16 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 */ 14 21 class ProtoClass { 15 22 … … 21 28 22 29 private: 23 int nonSense; //! doxygen tag here like this - delete this variable if you use this30 int nonSense; //!< doxygen tag here like this for all the variables - delete this variable if you use this 24 31 25 32 };
Note: See TracChangeset
for help on using the changeset viewer.