- Timestamp:
- 04/02/08 14:18:07 (8 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
branches/Carsten_PtrWork2/Source/System/FieldContainer/Base/OSGFieldHandle.h
r1032 r1072 150 150 /*---------------------------------------------------------------------*/ 151 151 152 virtual bool equal(Ptr rhs) = 0;152 virtual bool equal(Ptr rhs) const = 0; 153 153 154 154 bool operator ==(const EditFieldHandle &rhs); … … 209 209 /*---------------------------------------------------------------------*/ 210 210 211 virtual bool equal(Ptr rhs) = 0;211 virtual bool equal(Ptr rhs) const = 0; 212 212 213 213 bool operator ==(const EditFieldHandle &rhs); … … 221 221 const TypePtrVector &ignoreTypes = TypePtrVector(), 222 222 const TypeIdVector &shareGroupIds = TypeIdVector (), 223 const TypeIdVector &ignoreGroupIds = TypeIdVector () ) const= 0;223 const TypeIdVector &ignoreGroupIds = TypeIdVector () ) = 0; 224 224 }; 225 225 … … 270 270 /*---------------------------------------------------------------------*/ 271 271 272 virtual bool equal(Inherited::Ptr rhs) ;272 virtual bool equal(Inherited::Ptr rhs) const; 273 273 274 274 /*---------------------------------------------------------------------*/ … … 286 286 const TypePtrVector &ignoreTypes = TypePtrVector(), 287 287 const TypeIdVector &shareGroupIds = TypeIdVector (), 288 const TypeIdVector &ignoreGroupIds = TypeIdVector () ) const;288 const TypeIdVector &ignoreGroupIds = TypeIdVector () ); 289 289 290 290 /*---------------------------------------------------------------------*/ … … 342 342 /*---------------------------------------------------------------------*/ 343 343 344 virtual bool equal(Inherited::Ptr rhs) ;344 virtual bool equal(Inherited::Ptr rhs) const; 345 345 346 346 /*---------------------------------------------------------------------*/ … … 358 358 const TypePtrVector &ignoreTypes = TypePtrVector(), 359 359 const TypeIdVector &shareGroupIds = TypeIdVector (), 360 const TypeIdVector &ignoreGroupIds = TypeIdVector () ) const;360 const TypeIdVector &ignoreGroupIds = TypeIdVector () ); 361 361 362 362 /*---------------------------------------------------------------------*/ … … 411 411 /*---------------------------------------------------------------------*/ 412 412 413 virtual bool equal(Inherited::Ptr rhs) ;413 virtual bool equal(Inherited::Ptr rhs) const; 414 414 415 415 /*---------------------------------------------------------------------*/ … … 465 465 /*---------------------------------------------------------------------*/ 466 466 467 virtual bool equal(Inherited::Ptr rhs) ;467 virtual bool equal(Inherited::Ptr rhs) const; 468 468 469 469 /*---------------------------------------------------------------------*/
