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/FieldContainer/Misc/OSGContainerPoolBase.cpp

    r979 r988  
    5757#include <cstdio> 
    5858#include <boost/assign/list_of.hpp> 
     59#include <boost/bind.hpp> 
    5960 
    6061#include <OSGConfig.h> 
     
    6768#include "OSGContainerPool.h" 
    6869 
    69 #include "boost/bind.hpp" 
    7070 
    7171OSG_BEGIN_NAMESPACE 
     
    128128    "ContainerPool", 
    129129    0, 
    130     (PrototypeCreateF) &ContainerPoolBase::createEmpty, 
     130    (ProtoContainerCreateF) &ContainerPoolBase::createEmpty, 
    131131    ContainerPool::initMethod, 
    132132    (InitalInsertDescFunc) &ContainerPoolBase::classDescInserter, 
     
    170170/*------------------------------ get -----------------------------------*/ 
    171171 
    172 FieldContainerType &ContainerPoolBase::getType(void) 
     172FieldContainerType & 
     173ContainerPoolBase::getType(void) 
    173174{ 
    174175    return _type; 
    175176} 
    176177 
    177 const FieldContainerType &ContainerPoolBase::getType(void) const 
     178FieldContainerType const & 
     179ContainerPoolBase::getType(void) const 
    178180{ 
    179181    return _type; 
    180182} 
    181183 
    182 UInt32 ContainerPoolBase::getContainerSize(void) const 
     184UInt32 
     185ContainerPoolBase::getContainerSize(void) const 
    183186{ 
    184187    return sizeof(ContainerPool);