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.cpp

    r1018 r1030  
    729729} 
    730730 
    731 const MFNodeChildPtr *Node::getMFChildren(void) const 
     731MFNodeChildPtr const *Node::getMFChildren(void) const 
    732732{ 
    733733    return &_mfChildren; 
     734} 
     735 
     736MFNodeChildPtr const &Node::getChildren(void) const 
     737{ 
     738    return _mfChildren; 
    734739} 
    735740 
     
    929934    Inherited::resolveLinks(); 
    930935 
     936    FINFO(("Node::resolveLinks: [%p] clear core\n", this)); 
    931937    _sfCore    .setValue(NullFC); 
     938    FINFO(("Node::resolveLinks: [%p] clear children\n", this)); 
    932939    _mfChildren.clear(); 
    933940}