Show
Ignore:
Timestamp:
12/12/07 18:00:42 (1 year 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/SortLast/OSGSortLastWindowFields.h

    r1030 r1032  
    7272OSG_GEN_CONTAINERPTR(SortLastWindow); 
    7373 
    74 typedef RefCountPtrBuilder    <SortLastWindow>::Ptr SortLastWindowRefPtr; 
    75 typedef MTRefCountPtrBuilder  <SortLastWindow>::Ptr SortLastWindowMTRefPtr; 
    76 typedef WeakRefCountPtrBuilder<SortLastWindow>::Ptr SortLastWindowWeakRefPtr; 
    77 typedef ParentPtrBuilder      <SortLastWindow>::Ptr SortLastWindowParentPtr; 
     74typedef RefCountPtrBuilder        <SortLastWindow>::Ptr SortLastWindowRefPtr; 
     75typedef MTRefCountPtrBuilder      <SortLastWindow>::Ptr SortLastWindowMTRefPtr; 
     76typedef WeakRefCountPtrBuilder    <SortLastWindow>::Ptr SortLastWindowWeakRefPtr; 
     77typedef ParentPtrBuilder          <SortLastWindow>::Ptr SortLastWindowParentPtr; 
     78typedef InternalRefCountPtrBuilder<SortLastWindow>::Ptr SortLastWindowInternalRefPtr; 
    7879 
    7980#endif