Show
Ignore:
Timestamp:
12/12/07 18:00:42 (10 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/Contrib/Manipulators/OSGMoveManipulatorFields.h

    r1030 r1032  
    7272OSG_GEN_CONTAINERPTR(MoveManipulator); 
    7373 
    74 typedef RefCountPtrBuilder    <MoveManipulator>::Ptr MoveManipulatorRefPtr; 
    75 typedef MTRefCountPtrBuilder  <MoveManipulator>::Ptr MoveManipulatorMTRefPtr; 
    76 typedef WeakRefCountPtrBuilder<MoveManipulator>::Ptr MoveManipulatorWeakRefPtr; 
    77 typedef ParentPtrBuilder      <MoveManipulator>::Ptr MoveManipulatorParentPtr; 
     74typedef RefCountPtrBuilder        <MoveManipulator>::Ptr MoveManipulatorRefPtr; 
     75typedef MTRefCountPtrBuilder      <MoveManipulator>::Ptr MoveManipulatorMTRefPtr; 
     76typedef WeakRefCountPtrBuilder    <MoveManipulator>::Ptr MoveManipulatorWeakRefPtr; 
     77typedef ParentPtrBuilder          <MoveManipulator>::Ptr MoveManipulatorParentPtr; 
     78typedef InternalRefCountPtrBuilder<MoveManipulator>::Ptr MoveManipulatorInternalRefPtr; 
    7879 
    7980#endif