Show
Ignore:
Timestamp:
10/24/07 19:30:30 (11 months ago)
Author:
cneumann
Message:

fixed: FieldBundle? templates, pointers and fields updated

lots of compile errors - some remain

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • branches/Carsten_PtrWork/Source/System/Cluster/Window/Base/OSGClusterWindowBase.cpp

    r979 r988  
    5757#include <cstdio> 
    5858#include <boost/assign/list_of.hpp> 
     59#include <boost/bind.hpp> 
    5960 
    6061#include <OSGConfig.h> 
     
    6869#include "OSGClusterWindow.h" 
    6970 
    70 #include "boost/bind.hpp" 
    7171 
    7272OSG_BEGIN_NAMESPACE 
     
    305305    "NULL", 
    306306    0, 
    307     (PrototypeCreateF) &ClusterWindowBase::createEmpty, 
     307    (ProtoContainerCreateF) &ClusterWindowBase::createEmpty, 
    308308    ClusterWindow::initMethod, 
    309309    (InitalInsertDescFunc) &ClusterWindowBase::classDescInserter, 
     
    486486/*------------------------------ get -----------------------------------*/ 
    487487 
    488 FieldContainerType &ClusterWindowBase::getType(void) 
     488FieldContainerType & 
     489ClusterWindowBase::getType(void) 
    489490{ 
    490491    return _type; 
    491492} 
    492493 
    493 const FieldContainerType &ClusterWindowBase::getType(void) const 
     494FieldContainerType const & 
     495ClusterWindowBase::getType(void) const 
    494496{ 
    495497    return _type; 
    496498} 
    497499 
    498 UInt32 ClusterWindowBase::getContainerSize(void) const 
     500UInt32 
     501ClusterWindowBase::getContainerSize(void) const 
    499502{ 
    500503    return sizeof(ClusterWindow); 
     
    984987    _sfServiceAddress         (source._sfServiceAddress         ), 
    985988    _sfServiceInterface       (source._sfServiceInterface       ), 
    986     _sfClientWindow           (WindowInternalRefPtr(NullFC)), 
     989    _sfClientWindow           (WindowInternalRefPtr()), 
    987990    _sfInterleave             (source._sfInterleave             ), 
    988991    _sfFrameCount             (source._sfFrameCount             ), 
    989     _sfComposer               (ImageComposerInternalRefPtr(NullFC)), 
     992    _sfComposer               (ImageComposerInternalRefPtr()), 
    990993    _mfAutostart              (source._mfAutostart              ) 
    991994{