Changeset 7446 in orxonox.OLD for branches/network/src/lib
- Timestamp:
- Apr 29, 2006, 3:28:42 PM (19 years ago)
- Location:
- branches/network/src/lib
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/network/src/lib/coord/p_node.cc
r7444 r7446 1091 1091 void PNode::varChangeHandler( std::list< int > & id ) 1092 1092 { 1093 #warning implement this 1094 } 1095 1096 1093 if ( std::find( id.begin(), id.end(), relCoordinate_handle ) != id.end() ) 1094 { 1095 setRelCoor( relCoordinate_write ); 1096 } 1097 1098 if ( std::find( id.begin(), id.end(), relDirection_handle ) != id.end() ) 1099 { 1100 setRelDir( relDirection_write ); 1101 } 1102 } 1103 1104 -
branches/network/src/lib/network/synchronizeable_var/synchronizeable_bool.cc
r7444 r7446 20 20 /** 21 21 * standard constructor 22 * @todo this constructor is not jet implemented - do it 23 */ 22 */ 24 23 SynchronizeableBool::SynchronizeableBool( bool * ptrIn, bool * ptrOut, std::string name, int permission, int priority) : SynchronizeableVar( ptrIn, ptrOut, name, 0, permission, priority ) 25 24 {
Note: See TracChangeset
for help on using the changeset viewer.