Changeset 8706 for code/trunk/src/libraries/network/synchronisable
- Timestamp:
- Jun 14, 2011, 8:53:28 PM (14 years ago)
- Location:
- code/trunk
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/network/synchronisable/Serialise.h
r7284 r8706 84 84 85 85 /** @brief returns the size of the objectID needed to synchronise the pointer */ 86 template <class T> inline uint32_t returnSize( const SmartPtr<T>& variable)86 template <class T> inline uint32_t returnSize( const SmartPtr<T>& ) 87 87 { 88 88 return sizeof(uint32_t); -
code/trunk/src/libraries/network/synchronisable/Synchronisable.cc
r8329 r8706 383 383 /** 384 384 * This function determines, wheter the object should be saved to the bytestream (according to its syncmode/direction) 385 * @param id gamestate id386 385 * @param mode Synchronisation mode (toclient, toserver or bidirectional) 387 386 * @return true/false … … 397 396 /** 398 397 * This function determines, wheter the object should accept data from the bytestream (according to its syncmode/direction) 399 * @param id gamestate id400 398 * @param mode Synchronisation mode (toclient, toserver or bidirectional) 401 399 * @return true/false -
code/trunk/src/libraries/network/synchronisable/Synchronisable.h
r8329 r8706 50 50 namespace ObjectDirection{ 51 51 enum Value{ 52 None=0x0, 52 53 ToClient=0x1, 53 54 ToServer=0x2,
Note: See TracChangeset
for help on using the changeset viewer.