Changeset 4471 in orxonox.OLD for orxonox/trunk/src/lib/network/synchronisable.cc
- Timestamp:
- Jun 2, 2005, 2:05:58 AM (20 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
orxonox/trunk/src/lib/network/synchronisable.cc
r3476 r4471 16 16 */ 17 17 18 #define DEBUG_SPECIAL_MODULE DEBUG_MODULE_NETWORK 18 19 19 20 #include "synchronisable.h" … … 23 24 24 25 25 26 /** 27 \brief constructor for this class 28 */ 26 29 Synchronisable::Synchronisable () {} 27 30 28 31 29 32 /** 33 \brief deconstructor for this class 34 */ 30 35 Synchronisable::~Synchronisable () {} 31 36 32 37 38 /** 39 \brief gets the state of this object 40 \returns the state 41 */ 42 worldEntityState* Synchronisable::getState() 43 {} 44 45 46 /** 47 \brief sets the state of this object 48 \param state: the current state 49 */ 50 void Synchronisable::setState(worldEntityState* state) 51 {}
Note: See TracChangeset
for help on using the changeset viewer.