- Timestamp:
- 05/05/08 06:58:23 (2 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/FieldContainer/Attachments/OSGStringAttributeMapFields.h
r1161 r1197 82 82 83 83 template <> 84 struct FieldTraits<StringAttributeMap Ptr> :85 public FieldTraitsFCPtrBase<StringAttributeMap Ptr>84 struct FieldTraits<StringAttributeMap *> : 85 public FieldTraitsFCPtrBase<StringAttributeMap *> 86 86 { 87 87 private: … … 91 91 public: 92 92 93 typedef FieldTraits<StringAttributeMap Ptr> Self;93 typedef FieldTraits<StringAttributeMap *> Self; 94 94 95 95 enum { Convertible = NotConvertible }; … … 104 104 105 105 template<> inline 106 const Char8 *FieldTraits<StringAttributeMap Ptr, 0>::getSName<RecordedRefCountPolicy>(void)106 const Char8 *FieldTraits<StringAttributeMap *, 0>::getSName<RecordedRefCountPolicy>(void) 107 107 { 108 108 return "SFRecStringAttributeMapPtr"; … … 110 110 111 111 template<> inline 112 const Char8 *FieldTraits<StringAttributeMap Ptr, 0>::getSName<UnrecordedRefCountPolicy>(void)112 const Char8 *FieldTraits<StringAttributeMap *, 0>::getSName<UnrecordedRefCountPolicy>(void) 113 113 { 114 114 return "SFUnrecStringAttributeMapPtr"; … … 116 116 117 117 template<> inline 118 const Char8 *FieldTraits<StringAttributeMap Ptr, 0>::getSName<WeakRefCountPolicy>(void)118 const Char8 *FieldTraits<StringAttributeMap *, 0>::getSName<WeakRefCountPolicy>(void) 119 119 { 120 120 return "SFWeakStringAttributeMapPtr"; … … 122 122 123 123 template<> inline 124 const Char8 *FieldTraits<StringAttributeMap Ptr, 0>::getSName<NoRefCountPolicy>(void)124 const Char8 *FieldTraits<StringAttributeMap *, 0>::getSName<NoRefCountPolicy>(void) 125 125 { 126 126 return "SFUnrefdStringAttributeMapPtr"; … … 140 140 /*! \ingroup GrpSystemFieldSingle */ 141 141 142 typedef PointerSField<StringAttributeMap Ptr,142 typedef PointerSField<StringAttributeMap *, 143 143 RecordedRefCountPolicy > SFRecStringAttributeMapPtr; 144 typedef PointerSField<StringAttributeMap Ptr,144 typedef PointerSField<StringAttributeMap *, 145 145 UnrecordedRefCountPolicy> SFUnrecStringAttributeMapPtr; 146 typedef PointerSField<StringAttributeMap Ptr,146 typedef PointerSField<StringAttributeMap *, 147 147 WeakRefCountPolicy > SFWeakStringAttributeMapPtr; 148 typedef PointerSField<StringAttributeMap Ptr,148 typedef PointerSField<StringAttributeMap *, 149 149 NoRefCountPolicy > SFUncountedStringAttributeMapPtr; 150 150 #endif
