Changeset 607
- Timestamp:
- 03/15/07 17:35:57 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/FieldContainer/Base/OSGFieldDescriptionBase.cpp
r593 r607 151 151 /* Comparison */ 152 152 153 void FieldDescriptionBase::cloneValuesV( 154 const Field *pSrc, 155 const UInt32 fieldId, 156 FCPtrConstArg pDst, 157 const TypePtrVector &shareTypes, 158 const TypePtrVector &ignoreTypes, 159 const TypeIdVector &shareGroupIds, 160 const TypeIdVector &ignoreGroupIds) const 161 { 162 OSG_ASSERT(false && "Must define cloneValuesV"); 163 } 164 165 void FieldDescriptionBase::shareValuesV( 166 const Field *pSrc, 167 const UInt32 fieldId, 168 FCPtrConstArg pDst, 169 const TypePtrVector &cloneTypes, 170 const TypePtrVector &ignoreTypes, 171 const TypeIdVector &cloneGroupIds, 172 const TypeIdVector &ignoreGroupIds) const 173 { 174 OSG_ASSERT(false && "Must define shareValuesV"); 175 } trunk/Source/System/FieldContainer/Base/OSGFieldDescriptionBase.h
r593 r607 240 240 const UInt32 fieldId, 241 241 FCPtrConstArg pDst, 242 const TypePtrVector &shareTypes = TypePtrVector(), 242 const TypePtrVector &shareTypes = TypePtrVector(), 243 243 const TypePtrVector &ignoreTypes = TypePtrVector(), 244 244 const TypeIdVector &shareGroupIds = TypeIdVector (), 245 const TypeIdVector &ignoreGroupIds = TypeIdVector ()) const = 0;245 const TypeIdVector &ignoreGroupIds = TypeIdVector ()) const; 246 246 247 247 virtual void shareValuesV( … … 252 252 const TypePtrVector &ignoreTypes = TypePtrVector(), 253 253 const TypeIdVector &cloneGroupIds = TypeIdVector (), 254 const TypeIdVector &ignoreGroupIds = TypeIdVector ()) const = 0;254 const TypeIdVector &ignoreGroupIds = TypeIdVector ()) const; 255 255 256 256 /*! \} */
