Show
Ignore:
Timestamp:
12/03/07 15:48:13 (1 year ago)
Author:
cneumann
Message:

fixed: compile errors

reference counting


It compiles on linux (when disabling the VRML Loader) and the first
ref counting tests seem to work.

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/Carsten_PtrWork2/Source/System/FieldContainer/Node/OSGNode.h

    r1017 r1030  
    8585    OSG_GEN_INTERNALPTR(Node); 
    8686 
     87    typedef WeakRefCountPtrBuilder<Node>::Ptr ObjWeakRefPtr; 
     88    typedef MTRefCountPtrBuilder  <Node>::Ptr ObjMTRefPtr; 
     89    typedef RefCountPtrBuilder    <Node>::Ptr ObjRefPtr; 
     90    typedef ParentPtrBuilder      <Node>::Ptr ObjParentPtr; 
     91     
    8792    typedef Inherited::TypeObject                  TypeObject; 
    8893 
     
    420425}; 
    421426 
    422 typedef RefPtr<NodePtr>        NodeRefPtr; 
     427typedef Node::ObjRefPtr     NodeRefPtr; 
     428typedef Node::ObjMTRefPtr   NodeMTRefPtr; 
     429typedef Node::ObjWeakRefPtr NodeWeakRefPtr; 
     430typedef Node::ObjParentPtr  NodeParentPtr; 
    423431 
    424432OSG_SYSTEM_DLLMAPPING