Show
Ignore:
Timestamp:
05/05/08 06:58:23 (4 months ago)
Author:
vossg
Message:

changed: base rebuild interface clean up (removal ptr typedef / NullFC)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/Cluster/Window/Base/OSGClusterWindowFields.h

    r1161 r1197  
    8282 
    8383template <> 
    84 struct FieldTraits<ClusterWindowPtr> : 
    85     public FieldTraitsFCPtrBase<ClusterWindowPtr
     84struct FieldTraits<ClusterWindow *> : 
     85    public FieldTraitsFCPtrBase<ClusterWindow *
    8686{ 
    8787  private: 
     
    9191  public: 
    9292 
    93     typedef FieldTraits<ClusterWindowPtr>  Self; 
     93    typedef FieldTraits<ClusterWindow *>  Self; 
    9494 
    9595    enum                        { Convertible = NotConvertible }; 
     
    108108 
    109109template<> inline 
    110 const Char8 *FieldTraits<ClusterWindowPtr, 0>::getSName<RecordedRefCountPolicy>(void) 
     110const Char8 *FieldTraits<ClusterWindow *, 0>::getSName<RecordedRefCountPolicy>(void) 
    111111{ 
    112112    return "SFRecClusterWindowPtr";  
     
    114114 
    115115template<> inline 
    116 const Char8 *FieldTraits<ClusterWindowPtr, 0>::getSName<UnrecordedRefCountPolicy>(void) 
     116const Char8 *FieldTraits<ClusterWindow *, 0>::getSName<UnrecordedRefCountPolicy>(void) 
    117117{ 
    118118    return "SFUnrecClusterWindowPtr";  
     
    120120 
    121121template<> inline 
    122 const Char8 *FieldTraits<ClusterWindowPtr, 0>::getSName<WeakRefCountPolicy>(void) 
     122const Char8 *FieldTraits<ClusterWindow *, 0>::getSName<WeakRefCountPolicy>(void) 
    123123{ 
    124124    return "SFWeakClusterWindowPtr";  
     
    126126 
    127127template<> inline 
    128 const Char8 *FieldTraits<ClusterWindowPtr, 0>::getSName<NoRefCountPolicy>(void) 
     128const Char8 *FieldTraits<ClusterWindow *, 0>::getSName<NoRefCountPolicy>(void) 
    129129{ 
    130130    return "SFUnrefdClusterWindowPtr";  
     
    132132 
    133133template<> inline 
    134 const Char8 *FieldTraits<ClusterWindowPtr, 0>::getMName<RecordedRefCountPolicy>(void) 
     134const Char8 *FieldTraits<ClusterWindow *, 0>::getMName<RecordedRefCountPolicy>(void) 
    135135{ 
    136136    return "MFRecClusterWindowPtr";  
     
    138138 
    139139template<> inline 
    140 const Char8 *FieldTraits<ClusterWindowPtr, 0>::getMName<UnrecordedRefCountPolicy>(void) 
     140const Char8 *FieldTraits<ClusterWindow *, 0>::getMName<UnrecordedRefCountPolicy>(void) 
    141141{ 
    142142    return "MFUnrecClusterWindowPtr";  
     
    144144 
    145145template<> inline 
    146 const Char8 *FieldTraits<ClusterWindowPtr, 0>::getMName<WeakRefCountPolicy>(void) 
     146const Char8 *FieldTraits<ClusterWindow *, 0>::getMName<WeakRefCountPolicy>(void) 
    147147{ 
    148148    return "MFWeakClusterWindowPtr";  
     
    150150 
    151151template<> inline 
    152 const Char8 *FieldTraits<ClusterWindowPtr, 0>::getMName<NoRefCountPolicy>(void) 
     152const Char8 *FieldTraits<ClusterWindow *, 0>::getMName<NoRefCountPolicy>(void) 
    153153{ 
    154154    return "MFUnrefdClusterWindowPtr";  
     
    167167/*! \ingroup GrpClusterFieldSingle */ 
    168168 
    169 typedef PointerSField<ClusterWindowPtr
     169typedef PointerSField<ClusterWindow *
    170170                      RecordedRefCountPolicy  > SFRecClusterWindowPtr; 
    171 typedef PointerSField<ClusterWindowPtr
     171typedef PointerSField<ClusterWindow *
    172172                      UnrecordedRefCountPolicy> SFUnrecClusterWindowPtr; 
    173 typedef PointerSField<ClusterWindowPtr
     173typedef PointerSField<ClusterWindow *
    174174                      WeakRefCountPolicy      > SFWeakClusterWindowPtr; 
    175 typedef PointerSField<ClusterWindowPtr
     175typedef PointerSField<ClusterWindow *
    176176                      NoRefCountPolicy        > SFUncountedClusterWindowPtr; 
    177177#endif 
     
    181181/*! \ingroup GrpClusterFieldMulti */ 
    182182 
    183 typedef PointerMField<ClusterWindowPtr
     183typedef PointerMField<ClusterWindow *
    184184                      RecordedRefCountPolicy  > MFRecClusterWindowPtr; 
    185 typedef PointerMField<ClusterWindowPtr
     185typedef PointerMField<ClusterWindow *
    186186                      UnrecordedRefCountPolicy> MFUnrecClusterWindowPtr; 
    187 typedef PointerMField<ClusterWindowPtr
     187typedef PointerMField<ClusterWindow *
    188188                      WeakRefCountPolicy      > MFWeakClusterWindowPtr; 
    189 typedef PointerMField<ClusterWindowPtr
     189typedef PointerMField<ClusterWindow *
    190190                      NoRefCountPolicy        > MFUncountedClusterWindowPtr; 
    191191#endif