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/Depreciated/State/OSGTextureChunkBase.cpp

    r979 r988  
    5757#include <cstdio> 
    5858#include <boost/assign/list_of.hpp> 
     59#include <boost/bind.hpp> 
    5960 
    6061#include <OSGConfig.h> 
     
    9697#include "OSGTextureChunk.h" 
    9798 
    98 #include "boost/bind.hpp" 
    9999 
    100100OSG_BEGIN_NAMESPACE 
     
    10901090    "NULL", 
    10911091    0, 
    1092     (PrototypeCreateF) &TextureChunkBase::createEmpty, 
     1092    (ProtoContainerCreateF) &TextureChunkBase::createEmpty, 
    10931093    TextureChunk::initMethod, 
    10941094    (InitalInsertDescFunc) &TextureChunkBase::classDescInserter, 
     
    17771777/*------------------------------ get -----------------------------------*/ 
    17781778 
    1779 FieldContainerType &TextureChunkBase::getType(void) 
     1779FieldContainerType & 
     1780TextureChunkBase::getType(void) 
    17801781{ 
    17811782    return _type; 
    17821783} 
    17831784 
    1784 const FieldContainerType &TextureChunkBase::getType(void) const 
     1785FieldContainerType const & 
     1786TextureChunkBase::getType(void) const 
    17851787{ 
    17861788    return _type; 
    17871789} 
    17881790 
    1789 UInt32 TextureChunkBase::getContainerSize(void) const 
     1791UInt32 
     1792TextureChunkBase::getContainerSize(void) const 
    17901793{ 
    17911794    return sizeof(TextureChunk); 
     
    28412844TextureChunkBase::TextureChunkBase(const TextureChunkBase &source) : 
    28422845    Inherited(source), 
    2843     _sfImage                  (ImageInternalRefPtr(NullFC)), 
     2846    _sfImage                  (ImageInternalRefPtr()), 
    28442847    _sfInternalFormat         (source._sfInternalFormat         ), 
    28452848    _sfExternalFormat         (source._sfExternalFormat         ),