- Timestamp:
- 05/05/08 06:39:01 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Cluster/Window/SortFirst/OSGSortFirstWindowBase.inl
r835 r1193 86 86 //! Get the value of the SortFirstWindow::_sfCompression field. 87 87 inline 88 const std::string &SortFirstWindowBase::getCompression(void) const88 const std::string SortFirstWindowBase::getCompression(void) const 89 89 { 90 90 return _sfCompression.getValue(); … … 119 119 //! Get the value of the SortFirstWindow::_sfSubtileSize field. 120 120 inline 121 const UInt32 &SortFirstWindowBase::getSubtileSize(void) const121 const UInt32 SortFirstWindowBase::getSubtileSize(void) const 122 122 { 123 123 return _sfSubtileSize.getValue(); … … 152 152 //! Get the value of the SortFirstWindow::_sfCompose field. 153 153 inline 154 const bool &SortFirstWindowBase::getCompose(void) const154 const bool SortFirstWindowBase::getCompose(void) const 155 155 { 156 156 return _sfCompose.getValue(); … … 185 185 //! Get the value of the SortFirstWindow::_sfUseFaceDistribution field. 186 186 inline 187 const bool &SortFirstWindowBase::getUseFaceDistribution(void) const187 const bool SortFirstWindowBase::getUseFaceDistribution(void) const 188 188 { 189 189 return _sfUseFaceDistribution.getValue(); … … 209 209 //! Get the value of the \a index element the SortFirstWindow::_mfRegion field. 210 210 inline 211 const UInt32 &SortFirstWindowBase::getRegion(const UInt32 index) const211 const UInt32 SortFirstWindowBase::getRegion(const UInt32 index) const 212 212 { 213 213 return _mfRegion[index]; … … 222 222 } 223 223 224 //! Get the SortFirstWindow::_mfRegion field.225 inline226 MFUInt32 &SortFirstWindowBase::editRegion(void)227 {228 editMField(RegionFieldMask, _mfRegion);229 230 return _mfRegion;231 }232 233 224 #ifdef OSG_1_GET_COMPAT 234 225 inline … … 246 237 #endif 247 238 248 249 //! Get the SortFirstWindow::_mfRegion field.250 inline251 const MFUInt32 &SortFirstWindowBase::getRegion(void) const252 {253 return _mfRegion;254 }255 239 256 240
