- Timestamp:
- 05/05/08 06:58:23 (5 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Depreciated/State/OSGCubeTextureChunkBase.inl
r1193 r1197 77 77 //! Get the value of the CubeTextureChunk::_sfPosZImage field. 78 78 inline 79 Image PtrCubeTextureChunkBase::getPosZImage(void) const79 Image * CubeTextureChunkBase::getPosZImage(void) const 80 80 { 81 81 return _sfPosZImage.getValue(); … … 84 84 //! Set the value of the CubeTextureChunk::_sfPosZImage field. 85 85 inline 86 void CubeTextureChunkBase::setPosZImage( const ImagePtrvalue)86 void CubeTextureChunkBase::setPosZImage(Image * const value) 87 87 { 88 88 editSField(PosZImageFieldMask); … … 93 93 //! Get the value of the CubeTextureChunk::_sfPosXImage field. 94 94 inline 95 Image PtrCubeTextureChunkBase::getPosXImage(void) const95 Image * CubeTextureChunkBase::getPosXImage(void) const 96 96 { 97 97 return _sfPosXImage.getValue(); … … 100 100 //! Set the value of the CubeTextureChunk::_sfPosXImage field. 101 101 inline 102 void CubeTextureChunkBase::setPosXImage( const ImagePtrvalue)102 void CubeTextureChunkBase::setPosXImage(Image * const value) 103 103 { 104 104 editSField(PosXImageFieldMask); … … 109 109 //! Get the value of the CubeTextureChunk::_sfNegXImage field. 110 110 inline 111 Image PtrCubeTextureChunkBase::getNegXImage(void) const111 Image * CubeTextureChunkBase::getNegXImage(void) const 112 112 { 113 113 return _sfNegXImage.getValue(); … … 116 116 //! Set the value of the CubeTextureChunk::_sfNegXImage field. 117 117 inline 118 void CubeTextureChunkBase::setNegXImage( const ImagePtrvalue)118 void CubeTextureChunkBase::setNegXImage(Image * const value) 119 119 { 120 120 editSField(NegXImageFieldMask); … … 125 125 //! Get the value of the CubeTextureChunk::_sfPosYImage field. 126 126 inline 127 Image PtrCubeTextureChunkBase::getPosYImage(void) const127 Image * CubeTextureChunkBase::getPosYImage(void) const 128 128 { 129 129 return _sfPosYImage.getValue(); … … 132 132 //! Set the value of the CubeTextureChunk::_sfPosYImage field. 133 133 inline 134 void CubeTextureChunkBase::setPosYImage( const ImagePtrvalue)134 void CubeTextureChunkBase::setPosYImage(Image * const value) 135 135 { 136 136 editSField(PosYImageFieldMask); … … 141 141 //! Get the value of the CubeTextureChunk::_sfNegYImage field. 142 142 inline 143 Image PtrCubeTextureChunkBase::getNegYImage(void) const143 Image * CubeTextureChunkBase::getNegYImage(void) const 144 144 { 145 145 return _sfNegYImage.getValue(); … … 148 148 //! Set the value of the CubeTextureChunk::_sfNegYImage field. 149 149 inline 150 void CubeTextureChunkBase::setNegYImage( const ImagePtrvalue)150 void CubeTextureChunkBase::setNegYImage(Image * const value) 151 151 { 152 152 editSField(NegYImageFieldMask);
