Changeset 3245 in orxonox.OLD for orxonox/trunk
- Timestamp:
- Dec 22, 2004, 12:14:35 AM (20 years ago)
- Location:
- orxonox/trunk/src
- Files:
-
- 3 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/proto_class.cc
r1956 r3245 23 23 24 24 25 /** 26 \brief standard constructor 25 27 28 \todo this constructor is not jet implemented - do it 29 */ 26 30 ProtoClass::ProtoClass () {} 27 31 28 32 33 /** 34 \brief standard deconstructor 29 35 36 \todo this deconstructor is not jet implemented - do it 37 */ 30 38 ProtoClass::~ProtoClass () {} 31 39 32 40 41 /** 42 \brief nonsense - delete this method 43 \param realy nothing to give 44 \returns true or false - probably nothing? 45 46 this is just to show the doxygen abilities 47 */ 48 bool ProtoClass::doNonSense (int nothing) {} -
orxonox/trunk/src/proto_class.h
r3224 r3245 1 /*! 2 \file world_entity.h 3 \brief Definition of the basic WorldEntity 4 */ 5 1 6 2 7 #ifndef _PROTO_CLASS_H 3 8 #define _PROTO_CLASS_H 4 9 5 #include " data_tank.h"10 #include "stdincl.h" 6 11 12 /*class Test;*/ /* forward definition of class Test (without including it here!)*/ 7 13 8 14 class ProtoClass { … … 12 18 ~ProtoClass (); 13 19 20 bool doNonSense (int nothing); 21 22 private: 23 int nonSense; //! doxygen tag here like this - delete this variable if you use this 24 14 25 }; 15 26 -
orxonox/trunk/src/world_entity.cc
r3229 r3245 42 42 43 43 /** 44 44 \brief standard destructor 45 45 */ 46 46 WorldEntity::~WorldEntity ()
Note: See TracChangeset
for help on using the changeset viewer.