Show
Ignore:
Timestamp:
12/12/07 18:00:42 (9 months ago)
Author:
cneumann
Message:

added: generic interface
changed: factory functions return RefPtr?

The unittests don't pass right now, because of the change
to the factory functions, which leads to containers
being immediately destroyed as they are not assigned to
a RefPtr?.

Files:

Legend:

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

    r1030 r1032  
    7272OSG_GEN_CONTAINERPTR(ClusterWindow); 
    7373 
    74 typedef RefCountPtrBuilder    <ClusterWindow>::Ptr ClusterWindowRefPtr; 
    75 typedef MTRefCountPtrBuilder  <ClusterWindow>::Ptr ClusterWindowMTRefPtr; 
    76 typedef WeakRefCountPtrBuilder<ClusterWindow>::Ptr ClusterWindowWeakRefPtr; 
    77 typedef ParentPtrBuilder      <ClusterWindow>::Ptr ClusterWindowParentPtr; 
     74typedef RefCountPtrBuilder        <ClusterWindow>::Ptr ClusterWindowRefPtr; 
     75typedef MTRefCountPtrBuilder      <ClusterWindow>::Ptr ClusterWindowMTRefPtr; 
     76typedef WeakRefCountPtrBuilder    <ClusterWindow>::Ptr ClusterWindowWeakRefPtr; 
     77typedef ParentPtrBuilder          <ClusterWindow>::Ptr ClusterWindowParentPtr; 
     78typedef InternalRefCountPtrBuilder<ClusterWindow>::Ptr ClusterWindowInternalRefPtr; 
    7879 
    7980#endif