Changeset 1161 for trunk/Source/System/NodeCores/Drawables/Geometry/Properties/OSGGeoVectorPropertyFields.h
- Timestamp:
- 04/15/08 04:48:53 (6 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Properties/OSGGeoVectorPropertyFields.h
r1142 r1161 59 59 60 60 #include "OSGFieldContainerFields.h" 61 #include "OSG FieldContainerPtrSField.h"62 #include "OSG FieldContainerPtrMField.h"61 #include "OSGPointerSField.h" 62 #include "OSGPointerMField.h" 63 63 64 64 … … 192 192 const Char8 *FieldTraits<GeoVectorPropertyPtr, 1>::getSName<RecordedRefCountPolicy>(void) 193 193 { 194 return "SFRec FieldContainerChildGeoVectorPropertyPtr";194 return "SFRecChildGeoVectorPropertyPtr"; 195 195 } 196 196 … … 198 198 const Char8 *FieldTraits<GeoVectorPropertyPtr, 1>::getSName<UnrecordedRefCountPolicy>(void) 199 199 { 200 return "SFUnrec FieldContainerChildGeoVectorPropertyPtr";200 return "SFUnrecChildGeoVectorPropertyPtr"; 201 201 } 202 202 … … 204 204 const Char8 *FieldTraits<GeoVectorPropertyPtr, 1>::getSName<WeakRefCountPolicy>(void) 205 205 { 206 return "SFWeak FieldContainerChildGeoVectorPropertyPtr";206 return "SFWeakChildGeoVectorPropertyPtr"; 207 207 } 208 208 … … 210 210 const Char8 *FieldTraits<GeoVectorPropertyPtr, 1>::getSName<NoRefCountPolicy>(void) 211 211 { 212 return "SFUnrefd FieldContainerChildGeoVectorPropertyPtr";212 return "SFUnrefdChildGeoVectorPropertyPtr"; 213 213 } 214 214 … … 216 216 const Char8 *FieldTraits<GeoVectorPropertyPtr, 1>::getMName<RecordedRefCountPolicy>(void) 217 217 { 218 return "MFRec FieldContainerChildGeoVectorPropertyPtr";218 return "MFRecChildGeoVectorPropertyPtr"; 219 219 } 220 220 … … 222 222 const Char8 *FieldTraits<GeoVectorPropertyPtr, 1>::getMName<UnrecordedRefCountPolicy>(void) 223 223 { 224 return "MFUnrec FieldContainerChildGeoVectorPropertyPtr";224 return "MFUnrecChildGeoVectorPropertyPtr"; 225 225 } 226 226 … … 228 228 const Char8 *FieldTraits<GeoVectorPropertyPtr, 1>::getMName<WeakRefCountPolicy>(void) 229 229 { 230 return "MFWeak FieldContainerChildGeoVectorPropertyPtr";230 return "MFWeakChildGeoVectorPropertyPtr"; 231 231 } 232 232 … … 234 234 const Char8 *FieldTraits<GeoVectorPropertyPtr, 1>::getMName<NoRefCountPolicy>(void) 235 235 { 236 return "MFUnrefd FieldContainerChildGeoVectorPropertyPtr";236 return "MFUnrefdChildGeoVectorPropertyPtr"; 237 237 } 238 238 … … 244 244 /*! \ingroup GrpDrawableFieldSingle */ 245 245 246 typedef FieldContainerPtrSField<GeoVectorPropertyPtr,247 RecordedRefCountPolicy > SFRecGeoVectorPropertyPtr;248 typedef FieldContainerPtrSField<GeoVectorPropertyPtr,249 UnrecordedRefCountPolicy> SFUnrecGeoVectorPropertyPtr;250 typedef FieldContainerPtrSField<GeoVectorPropertyPtr,251 WeakRefCountPolicy > SFWeakGeoVectorPropertyPtr;252 typedef FieldContainerPtrSField<GeoVectorPropertyPtr,253 NoRefCountPolicy > SFUncountedGeoVectorPropertyPtr;246 typedef PointerSField<GeoVectorPropertyPtr, 247 RecordedRefCountPolicy > SFRecGeoVectorPropertyPtr; 248 typedef PointerSField<GeoVectorPropertyPtr, 249 UnrecordedRefCountPolicy> SFUnrecGeoVectorPropertyPtr; 250 typedef PointerSField<GeoVectorPropertyPtr, 251 WeakRefCountPolicy > SFWeakGeoVectorPropertyPtr; 252 typedef PointerSField<GeoVectorPropertyPtr, 253 NoRefCountPolicy > SFUncountedGeoVectorPropertyPtr; 254 254 #endif 255 255 … … 258 258 /*! \ingroup GrpDrawableFieldMulti */ 259 259 260 typedef FieldContainerPtrMField<GeoVectorPropertyPtr,261 RecordedRefCountPolicy > MFRecGeoVectorPropertyPtr;262 typedef FieldContainerPtrMField<GeoVectorPropertyPtr,263 UnrecordedRefCountPolicy> MFUnrecGeoVectorPropertyPtr;264 typedef FieldContainerPtrMField<GeoVectorPropertyPtr,265 WeakRefCountPolicy > MFWeakGeoVectorPropertyPtr;266 typedef FieldContainerPtrMField<GeoVectorPropertyPtr,267 NoRefCountPolicy > MFUncountedGeoVectorPropertyPtr;268 #endif 269 270 271 272 typedef FieldContainerPtrChildSField<260 typedef PointerMField<GeoVectorPropertyPtr, 261 RecordedRefCountPolicy > MFRecGeoVectorPropertyPtr; 262 typedef PointerMField<GeoVectorPropertyPtr, 263 UnrecordedRefCountPolicy> MFUnrecGeoVectorPropertyPtr; 264 typedef PointerMField<GeoVectorPropertyPtr, 265 WeakRefCountPolicy > MFWeakGeoVectorPropertyPtr; 266 typedef PointerMField<GeoVectorPropertyPtr, 267 NoRefCountPolicy > MFUncountedGeoVectorPropertyPtr; 268 #endif 269 270 271 272 typedef ChildPointerSField< 273 273 GeoVectorPropertyPtr, 274 274 UnrecordedRefCountPolicy, 275 1 > SFUnrecFieldContainerChildGeoVectorPropertyPtr; 276 277 typedef SFUnrecFieldContainerChildGeoVectorPropertyPtr 278 SFUnrecChildGeoVectorPropertyPtr; 279 280 281 typedef FieldContainerPtrChildMField< 275 1 > SFUnrecChildGeoVectorPropertyPtr; 276 277 278 typedef ChildPointerMField< 282 279 GeoVectorPropertyPtr, 283 280 UnrecordedRefCountPolicy, 284 1 > MFUnrecFieldContainerChildGeoVectorPropertyPtr; 285 286 typedef MFUnrecFieldContainerChildGeoVectorPropertyPtr 287 MFUnrecChildGeoVectorPropertyPtr; 281 1 > MFUnrecChildGeoVectorPropertyPtr; 288 282 289 283 OSG_END_NAMESPACE
