Show
Ignore:
Timestamp:
09/06/06 00:48:55 (2 years ago)
Author:
vossg
Message:

fixed : missing symbols (compat mode)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/Image/WS/OSGImageBase.inl

    r2 r54  
    9191} 
    9292 
     93#ifdef OSG_1_COMPAT 
     94inline 
     95Int32 &ImageBase::getDimension(void) 
     96{ 
     97    return this->editDimension(); 
     98} 
     99#endif 
     100 
    93101//! Set the value of the Image::_sfDimension field. 
    94102inline 
     
    116124} 
    117125 
     126#ifdef OSG_1_COMPAT 
     127inline 
     128Int32 &ImageBase::getWidth(void) 
     129{ 
     130    return this->editWidth(); 
     131} 
     132#endif 
     133 
    118134//! Set the value of the Image::_sfWidth field. 
    119135inline 
     
    141157} 
    142158 
     159#ifdef OSG_1_COMPAT 
     160inline 
     161Int32 &ImageBase::getHeight(void) 
     162{ 
     163    return this->editHeight(); 
     164} 
     165#endif 
     166 
    143167//! Set the value of the Image::_sfHeight field. 
    144168inline 
     
    166190} 
    167191 
     192#ifdef OSG_1_COMPAT 
     193inline 
     194Int32 &ImageBase::getDepth(void) 
     195{ 
     196    return this->editDepth(); 
     197} 
     198#endif 
     199 
    168200//! Set the value of the Image::_sfDepth field. 
    169201inline 
     
    191223} 
    192224 
     225#ifdef OSG_1_COMPAT 
     226inline 
     227Int32 &ImageBase::getBpp(void) 
     228{ 
     229    return this->editBpp(); 
     230} 
     231#endif 
     232 
    193233//! Set the value of the Image::_sfBpp field. 
    194234inline 
     
    216256} 
    217257 
     258#ifdef OSG_1_COMPAT 
     259inline 
     260Int32 &ImageBase::getMipMapCount(void) 
     261{ 
     262    return this->editMipMapCount(); 
     263} 
     264#endif 
     265 
    218266//! Set the value of the Image::_sfMipMapCount field. 
    219267inline 
     
    241289} 
    242290 
     291#ifdef OSG_1_COMPAT 
     292inline 
     293Int32 &ImageBase::getFrameCount(void) 
     294{ 
     295    return this->editFrameCount(); 
     296} 
     297#endif 
     298 
    243299//! Set the value of the Image::_sfFrameCount field. 
    244300inline 
     
    266322} 
    267323 
     324#ifdef OSG_1_COMPAT 
     325inline 
     326Time &ImageBase::getFrameDelay(void) 
     327{ 
     328    return this->editFrameDelay(); 
     329} 
     330#endif 
     331 
    268332//! Set the value of the Image::_sfFrameDelay field. 
    269333inline 
     
    291355} 
    292356 
     357#ifdef OSG_1_COMPAT 
     358inline 
     359UInt32 &ImageBase::getPixelFormat(void) 
     360{ 
     361    return this->editPixelFormat(); 
     362} 
     363#endif 
     364 
    293365//! Set the value of the Image::_sfPixelFormat field. 
    294366inline 
     
    316388} 
    317389 
     390#ifdef OSG_1_COMPAT 
     391inline 
     392Int32 &ImageBase::getFrameSize(void) 
     393{ 
     394    return this->editFrameSize(); 
     395} 
     396#endif 
     397 
    318398//! Set the value of the Image::_sfFrameSize field. 
    319399inline 
     
    341421} 
    342422 
     423#ifdef OSG_1_COMPAT 
     424inline 
     425std::string &ImageBase::getName(void) 
     426{ 
     427    return this->editName(); 
     428} 
     429#endif 
     430 
    343431//! Set the value of the Image::_sfName field. 
    344432inline 
     
    366454} 
    367455 
     456#ifdef OSG_1_COMPAT 
     457inline 
     458Int32 &ImageBase::getDataType(void) 
     459{ 
     460    return this->editDataType(); 
     461} 
     462#endif 
     463 
    368464//! Set the value of the Image::_sfDataType field. 
    369465inline 
     
    391487} 
    392488 
     489#ifdef OSG_1_COMPAT 
     490inline 
     491Int32 &ImageBase::getComponentSize(void) 
     492{ 
     493    return this->editComponentSize(); 
     494} 
     495#endif 
     496 
    393497//! Set the value of the Image::_sfComponentSize field. 
    394498inline 
     
    416520} 
    417521 
     522#ifdef OSG_1_COMPAT 
     523inline 
     524Int32 &ImageBase::getSideCount(void) 
     525{ 
     526    return this->editSideCount(); 
     527} 
     528#endif 
     529 
    418530//! Set the value of the Image::_sfSideCount field. 
    419531inline 
     
    441553} 
    442554 
     555#ifdef OSG_1_COMPAT 
     556inline 
     557Int32 &ImageBase::getSideSize(void) 
     558{ 
     559    return this->editSideSize(); 
     560} 
     561#endif 
     562 
    443563//! Set the value of the Image::_sfSideSize field. 
    444564inline 
     
    466586} 
    467587 
     588#ifdef OSG_1_COMPAT 
     589inline 
     590bool &ImageBase::getForceCompressedData(void) 
     591{ 
     592    return this->editForceCompressedData(); 
     593} 
     594#endif 
     595 
    468596//! Set the value of the Image::_sfForceCompressedData field. 
    469597inline 
     
    491619} 
    492620 
     621#ifdef OSG_1_COMPAT 
     622inline 
     623bool &ImageBase::getForceAlphaChannel(void) 
     624{ 
     625    return this->editForceAlphaChannel(); 
     626} 
     627#endif 
     628 
    493629//! Set the value of the Image::_sfForceAlphaChannel field. 
    494630inline 
     
    516652} 
    517653 
     654#ifdef OSG_1_COMPAT 
     655inline 
     656bool &ImageBase::getForceColorChannel(void) 
     657{ 
     658    return this->editForceColorChannel(); 
     659} 
     660#endif 
     661 
    518662//! Set the value of the Image::_sfForceColorChannel field. 
    519663inline 
     
    541685} 
    542686 
     687#ifdef OSG_1_COMPAT 
     688inline 
     689bool &ImageBase::getForceAlphaBinary(void) 
     690{ 
     691    return this->editForceAlphaBinary(); 
     692} 
     693#endif 
     694 
    543695//! Set the value of the Image::_sfForceAlphaBinary field. 
    544696inline 
     
    587739    return _mfPixel; 
    588740} 
     741 
     742#ifdef OSG_1_COMPAT 
     743inline 
     744UInt8 &ImageBase::getPixel(const UInt32 index) 
     745{ 
     746    return this->editPixel(index); 
     747} 
     748 
     749inline 
     750MFUInt8 &ImageBase::getPixel(void) 
     751{ 
     752    return this->editPixel(); 
     753} 
     754 
     755#endif 
     756 
    589757 
    590758//! Get the Image::_mfPixel field.