Show
Ignore:
Timestamp:
10/24/07 19:30:30 (10 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/OSGImageComposerBase.cpp

    r976 r988  
    5757#include <cstdio> 
    5858#include <boost/assign/list_of.hpp> 
     59#include <boost/bind.hpp> 
    5960 
    6061#include <OSGConfig.h> 
     
    6667#include "OSGImageComposer.h" 
    6768 
    68 #include "boost/bind.hpp" 
    6969 
    7070OSG_BEGIN_NAMESPACE 
     
    171171/*------------------------------ get -----------------------------------*/ 
    172172 
    173 FieldContainerType &ImageComposerBase::getType(void) 
     173FieldContainerType & 
     174ImageComposerBase::getType(void) 
    174175{ 
    175176    return _type; 
    176177} 
    177178 
    178 const FieldContainerType &ImageComposerBase::getType(void) const 
     179FieldContainerType const & 
     180ImageComposerBase::getType(void) const 
    179181{ 
    180182    return _type; 
    181183} 
    182184 
    183 UInt32 ImageComposerBase::getContainerSize(void) const 
     185UInt32 
     186ImageComposerBase::getContainerSize(void) const 
    184187{ 
    185188    return sizeof(ImageComposer); 
     
    242245    } 
    243246} 
    244  
    245247 
    246248