- Timestamp:
- 05/05/08 06:58:23 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Drawables/Base/OSGStatsAttachmentFields.h
r1161 r1197 82 82 83 83 template <> 84 struct FieldTraits<StatsAttachment Ptr> :85 public FieldTraitsFCPtrBase<StatsAttachment Ptr>84 struct FieldTraits<StatsAttachment *> : 85 public FieldTraitsFCPtrBase<StatsAttachment *> 86 86 { 87 87 private: … … 91 91 public: 92 92 93 typedef FieldTraits<StatsAttachment Ptr> Self;93 typedef FieldTraits<StatsAttachment *> Self; 94 94 95 95 enum { Convertible = NotConvertible }; … … 108 108 109 109 template<> inline 110 const Char8 *FieldTraits<StatsAttachment Ptr, 0>::getSName<RecordedRefCountPolicy>(void)110 const Char8 *FieldTraits<StatsAttachment *, 0>::getSName<RecordedRefCountPolicy>(void) 111 111 { 112 112 return "SFRecStatsAttachmentPtr"; … … 114 114 115 115 template<> inline 116 const Char8 *FieldTraits<StatsAttachment Ptr, 0>::getSName<UnrecordedRefCountPolicy>(void)116 const Char8 *FieldTraits<StatsAttachment *, 0>::getSName<UnrecordedRefCountPolicy>(void) 117 117 { 118 118 return "SFUnrecStatsAttachmentPtr"; … … 120 120 121 121 template<> inline 122 const Char8 *FieldTraits<StatsAttachment Ptr, 0>::getSName<WeakRefCountPolicy>(void)122 const Char8 *FieldTraits<StatsAttachment *, 0>::getSName<WeakRefCountPolicy>(void) 123 123 { 124 124 return "SFWeakStatsAttachmentPtr"; … … 126 126 127 127 template<> inline 128 const Char8 *FieldTraits<StatsAttachment Ptr, 0>::getSName<NoRefCountPolicy>(void)128 const Char8 *FieldTraits<StatsAttachment *, 0>::getSName<NoRefCountPolicy>(void) 129 129 { 130 130 return "SFUnrefdStatsAttachmentPtr"; … … 132 132 133 133 template<> inline 134 const Char8 *FieldTraits<StatsAttachment Ptr, 0>::getMName<RecordedRefCountPolicy>(void)134 const Char8 *FieldTraits<StatsAttachment *, 0>::getMName<RecordedRefCountPolicy>(void) 135 135 { 136 136 return "MFRecStatsAttachmentPtr"; … … 138 138 139 139 template<> inline 140 const Char8 *FieldTraits<StatsAttachment Ptr, 0>::getMName<UnrecordedRefCountPolicy>(void)140 const Char8 *FieldTraits<StatsAttachment *, 0>::getMName<UnrecordedRefCountPolicy>(void) 141 141 { 142 142 return "MFUnrecStatsAttachmentPtr"; … … 144 144 145 145 template<> inline 146 const Char8 *FieldTraits<StatsAttachment Ptr, 0>::getMName<WeakRefCountPolicy>(void)146 const Char8 *FieldTraits<StatsAttachment *, 0>::getMName<WeakRefCountPolicy>(void) 147 147 { 148 148 return "MFWeakStatsAttachmentPtr"; … … 150 150 151 151 template<> inline 152 const Char8 *FieldTraits<StatsAttachment Ptr, 0>::getMName<NoRefCountPolicy>(void)152 const Char8 *FieldTraits<StatsAttachment *, 0>::getMName<NoRefCountPolicy>(void) 153 153 { 154 154 return "MFUnrefdStatsAttachmentPtr"; … … 167 167 /*! \ingroup GrpSystemFieldSingle */ 168 168 169 typedef PointerSField<StatsAttachment Ptr,169 typedef PointerSField<StatsAttachment *, 170 170 RecordedRefCountPolicy > SFRecStatsAttachmentPtr; 171 typedef PointerSField<StatsAttachment Ptr,171 typedef PointerSField<StatsAttachment *, 172 172 UnrecordedRefCountPolicy> SFUnrecStatsAttachmentPtr; 173 typedef PointerSField<StatsAttachment Ptr,173 typedef PointerSField<StatsAttachment *, 174 174 WeakRefCountPolicy > SFWeakStatsAttachmentPtr; 175 typedef PointerSField<StatsAttachment Ptr,175 typedef PointerSField<StatsAttachment *, 176 176 NoRefCountPolicy > SFUncountedStatsAttachmentPtr; 177 177 #endif … … 181 181 /*! \ingroup GrpSystemFieldMulti */ 182 182 183 typedef PointerMField<StatsAttachment Ptr,183 typedef PointerMField<StatsAttachment *, 184 184 RecordedRefCountPolicy > MFRecStatsAttachmentPtr; 185 typedef PointerMField<StatsAttachment Ptr,185 typedef PointerMField<StatsAttachment *, 186 186 UnrecordedRefCountPolicy> MFUnrecStatsAttachmentPtr; 187 typedef PointerMField<StatsAttachment Ptr,187 typedef PointerMField<StatsAttachment *, 188 188 WeakRefCountPolicy > MFWeakStatsAttachmentPtr; 189 typedef PointerMField<StatsAttachment Ptr,189 typedef PointerMField<StatsAttachment *, 190 190 NoRefCountPolicy > MFUncountedStatsAttachmentPtr; 191 191 #endif
