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/Fields/OSGNodeFieldTraits.h

    r1017 r1030  
    4343#endif 
    4444 
     45#include "OSGAttachmentContainerFieldTraits.h" 
    4546#include "OSGFieldTraitsPointerFieldBase.h" 
    4647#include "OSGFieldTraitsParentPointerFieldBase.h" 
     
    7677    typedef FieldTraits<NodePtr>  Self; 
    7778         
     79    typedef MChildFCPointerField   <Node> HandledMChildField; 
     80    typedef MInternalFCPointerField<Node> HandledMInternalField; 
     81    typedef MWeakFCPointerField    <Node> HandledMWeakField; 
     82     
     83    typedef SChildFCPointerField   <Node> HandledSChildField; 
     84    typedef SInternalFCPointerField<Node> HandledSInternalField; 
     85    typedef SWeakFCPointerField    <Node> HandledSWeakField; 
     86     
    7887    enum { Convertible = Self::NotConvertible }; 
    7988 
     
    110119    typedef FieldTraits<NodeParentPtr>  Self; 
    111120         
     121    typedef MParentFCPointerField<Node> HandledMParentField; 
     122    typedef SParentFCPointerField<Node> HandledSParentField; 
     123     
    112124    enum { Convertible = Self::NotConvertible }; 
    113125