Changeset 1161 for trunk/Source/System/NodeCores/Drawables/Geometry/Properties/OSGGeoIntegralPropertyFields.h
- Timestamp:
- 04/15/08 04:48:53 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Geometry/Properties/OSGGeoIntegralPropertyFields.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<GeoIntegralPropertyPtr, 1>::getSName<RecordedRefCountPolicy>(void) 193 193 { 194 return "SFRec FieldContainerChildGeoIntegralPropertyPtr";194 return "SFRecChildGeoIntegralPropertyPtr"; 195 195 } 196 196 … … 198 198 const Char8 *FieldTraits<GeoIntegralPropertyPtr, 1>::getSName<UnrecordedRefCountPolicy>(void) 199 199 { 200 return "SFUnrec FieldContainerChildGeoIntegralPropertyPtr";200 return "SFUnrecChildGeoIntegralPropertyPtr"; 201 201 } 202 202 … … 204 204 const Char8 *FieldTraits<GeoIntegralPropertyPtr, 1>::getSName<WeakRefCountPolicy>(void) 205 205 { 206 return "SFWeak FieldContainerChildGeoIntegralPropertyPtr";206 return "SFWeakChildGeoIntegralPropertyPtr"; 207 207 } 208 208 … … 210 210 const Char8 *FieldTraits<GeoIntegralPropertyPtr, 1>::getSName<NoRefCountPolicy>(void) 211 211 { 212 return "SFUnrefd FieldContainerChildGeoIntegralPropertyPtr";212 return "SFUnrefdChildGeoIntegralPropertyPtr"; 213 213 } 214 214 … … 216 216 const Char8 *FieldTraits<GeoIntegralPropertyPtr, 1>::getMName<RecordedRefCountPolicy>(void) 217 217 { 218 return "MFRec FieldContainerChildGeoIntegralPropertyPtr";218 return "MFRecChildGeoIntegralPropertyPtr"; 219 219 } 220 220 … … 222 222 const Char8 *FieldTraits<GeoIntegralPropertyPtr, 1>::getMName<UnrecordedRefCountPolicy>(void) 223 223 { 224 return "MFUnrec FieldContainerChildGeoIntegralPropertyPtr";224 return "MFUnrecChildGeoIntegralPropertyPtr"; 225 225 } 226 226 … … 228 228 const Char8 *FieldTraits<GeoIntegralPropertyPtr, 1>::getMName<WeakRefCountPolicy>(void) 229 229 { 230 return "MFWeak FieldContainerChildGeoIntegralPropertyPtr";230 return "MFWeakChildGeoIntegralPropertyPtr"; 231 231 } 232 232 … … 234 234 const Char8 *FieldTraits<GeoIntegralPropertyPtr, 1>::getMName<NoRefCountPolicy>(void) 235 235 { 236 return "MFUnrefd FieldContainerChildGeoIntegralPropertyPtr";236 return "MFUnrefdChildGeoIntegralPropertyPtr"; 237 237 } 238 238 … … 244 244 /*! \ingroup GrpDrawableFieldSingle */ 245 245 246 typedef FieldContainerPtrSField<GeoIntegralPropertyPtr,247 RecordedRefCountPolicy > SFRecGeoIntegralPropertyPtr;248 typedef FieldContainerPtrSField<GeoIntegralPropertyPtr,249 UnrecordedRefCountPolicy> SFUnrecGeoIntegralPropertyPtr;250 typedef FieldContainerPtrSField<GeoIntegralPropertyPtr,251 WeakRefCountPolicy > SFWeakGeoIntegralPropertyPtr;252 typedef FieldContainerPtrSField<GeoIntegralPropertyPtr,253 NoRefCountPolicy > SFUncountedGeoIntegralPropertyPtr;246 typedef PointerSField<GeoIntegralPropertyPtr, 247 RecordedRefCountPolicy > SFRecGeoIntegralPropertyPtr; 248 typedef PointerSField<GeoIntegralPropertyPtr, 249 UnrecordedRefCountPolicy> SFUnrecGeoIntegralPropertyPtr; 250 typedef PointerSField<GeoIntegralPropertyPtr, 251 WeakRefCountPolicy > SFWeakGeoIntegralPropertyPtr; 252 typedef PointerSField<GeoIntegralPropertyPtr, 253 NoRefCountPolicy > SFUncountedGeoIntegralPropertyPtr; 254 254 #endif 255 255 … … 258 258 /*! \ingroup GrpDrawableFieldMulti */ 259 259 260 typedef FieldContainerPtrMField<GeoIntegralPropertyPtr,261 RecordedRefCountPolicy > MFRecGeoIntegralPropertyPtr;262 typedef FieldContainerPtrMField<GeoIntegralPropertyPtr,263 UnrecordedRefCountPolicy> MFUnrecGeoIntegralPropertyPtr;264 typedef FieldContainerPtrMField<GeoIntegralPropertyPtr,265 WeakRefCountPolicy > MFWeakGeoIntegralPropertyPtr;266 typedef FieldContainerPtrMField<GeoIntegralPropertyPtr,267 NoRefCountPolicy > MFUncountedGeoIntegralPropertyPtr;268 #endif 269 270 271 272 typedef FieldContainerPtrChildSField<260 typedef PointerMField<GeoIntegralPropertyPtr, 261 RecordedRefCountPolicy > MFRecGeoIntegralPropertyPtr; 262 typedef PointerMField<GeoIntegralPropertyPtr, 263 UnrecordedRefCountPolicy> MFUnrecGeoIntegralPropertyPtr; 264 typedef PointerMField<GeoIntegralPropertyPtr, 265 WeakRefCountPolicy > MFWeakGeoIntegralPropertyPtr; 266 typedef PointerMField<GeoIntegralPropertyPtr, 267 NoRefCountPolicy > MFUncountedGeoIntegralPropertyPtr; 268 #endif 269 270 271 272 typedef ChildPointerSField< 273 273 GeoIntegralPropertyPtr, 274 274 UnrecordedRefCountPolicy, 275 1 > SFUnrecFieldContainerChildGeoIntegralPropertyPtr; 276 277 typedef SFUnrecFieldContainerChildGeoIntegralPropertyPtr 278 SFUnrecChildGeoIntegralPropertyPtr; 279 280 281 typedef FieldContainerPtrChildMField< 275 1 > SFUnrecChildGeoIntegralPropertyPtr; 276 277 278 typedef ChildPointerMField< 282 279 GeoIntegralPropertyPtr, 283 280 UnrecordedRefCountPolicy, 284 1 > MFUnrecFieldContainerChildGeoIntegralPropertyPtr; 285 286 typedef MFUnrecFieldContainerChildGeoIntegralPropertyPtr 287 MFUnrecChildGeoIntegralPropertyPtr; 281 1 > MFUnrecChildGeoIntegralPropertyPtr; 288 282 289 283 OSG_END_NAMESPACE
