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