Planet
navi homePPSaboutscreenshotsdownloaddevelopmentforum

Ignore:
Timestamp:
Jun 2, 2005, 2:05:58 AM (20 years ago)
Author:
patrick
Message:

orxonox/trunk: synchronisable class commented, light altered

File:
1 edited

Legend:

Unmodified
Added
Removed
  • orxonox/trunk/src/lib/network/synchronisable.cc

    r3476 r4471  
    1616*/
    1717
     18#define DEBUG_SPECIAL_MODULE DEBUG_MODULE_NETWORK
    1819
    1920#include "synchronisable.h"
     
    2324
    2425
    25 
     26/**
     27   \brief constructor for this class
     28 */
    2629Synchronisable::Synchronisable () {}
    2730
    2831
    29 
     32/**
     33   \brief deconstructor for this class
     34*/
    3035Synchronisable::~Synchronisable () {}
    3136
    3237
     38/**
     39   \brief gets the state of this object
     40   \returns the state
     41*/
     42worldEntityState* Synchronisable::getState()
     43{}
     44
     45
     46/**
     47   \brief sets the state of this object
     48   \param state: the current state
     49*/
     50void Synchronisable::setState(worldEntityState* state)
     51{}
Note: See TracChangeset for help on using the changeset viewer.