Changeset 1198 for trunk/Source/System/Cluster/Base/OSGRemoteAspect.h
- Timestamp:
- 05/05/08 07:12:19 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Cluster/Base/OSGRemoteAspect.h
r1177 r1198 78 78 79 79 /** functor called for changed containers **/ 80 typedef boost::function<bool ( const FieldContainerPtr,81 RemoteAspect *)> Functor;80 typedef boost::function<bool (FieldContainer * const, 81 RemoteAspect * )> Functor; 82 82 83 83 … … 177 177 /*! \{ */ 178 178 179 bool callCreated ( const FieldContainerPtrnode);180 bool callDestroyed( const FieldContainerPtrnode);181 bool callChanged ( const FieldContainerPtrnode);179 bool callCreated (FieldContainer * const node); 180 bool callDestroyed(FieldContainer * const node); 181 bool callChanged (FieldContainer * const node); 182 182 183 183 /*! \} */ … … 203 203 /*! \{ */ 204 204 205 static bool _defaultCreatedFunction ( const FieldContainerPtr &fcp,206 RemoteAspect *aspect);207 static bool _defaultDestroyedFunction( const FieldContainerPtr &fcp,208 RemoteAspect *aspect);209 static bool _defaultChangedFunction ( const FieldContainerPtr &fcp,210 RemoteAspect *aspect);205 static bool _defaultCreatedFunction (FieldContainer * const fcp, 206 RemoteAspect * aspect); 207 static bool _defaultDestroyedFunction(FieldContainer * const fcp, 208 RemoteAspect * aspect); 209 static bool _defaultChangedFunction (FieldContainer * const fcp, 210 RemoteAspect * aspect); 211 211 212 212 static StatElemDesc<StatTimeElem> statSyncTime;
