- Timestamp:
- 06/09/08 01:10:45 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Cluster/Window/MultiDisplay/OSGMultiDisplayWindowBase.inl
r1193 r1288 86 86 //! Get the value of the MultiDisplayWindow::_sfHServers field. 87 87 inline 88 const UInt32MultiDisplayWindowBase::getHServers(void) const88 UInt32 MultiDisplayWindowBase::getHServers(void) const 89 89 { 90 90 return _sfHServers.getValue(); 91 91 } 92 92 93 #ifdef OSG_1_GET_COMPAT94 inline95 UInt32 &MultiDisplayWindowBase::getHServers (void)96 {97 return this->editHServers ();98 }99 #endif100 101 93 //! Set the value of the MultiDisplayWindow::_sfHServers field. 102 94 inline 103 void MultiDisplayWindowBase::setHServers(const UInt32 &value)95 void MultiDisplayWindowBase::setHServers(const UInt32 value) 104 96 { 105 97 editSField(HServersFieldMask); … … 119 111 //! Get the value of the MultiDisplayWindow::_sfVServers field. 120 112 inline 121 const UInt32MultiDisplayWindowBase::getVServers(void) const113 UInt32 MultiDisplayWindowBase::getVServers(void) const 122 114 { 123 115 return _sfVServers.getValue(); 124 116 } 125 117 126 #ifdef OSG_1_GET_COMPAT127 inline128 UInt32 &MultiDisplayWindowBase::getVServers (void)129 {130 return this->editVServers ();131 }132 #endif133 134 118 //! Set the value of the MultiDisplayWindow::_sfVServers field. 135 119 inline 136 void MultiDisplayWindowBase::setVServers(const UInt32 &value)120 void MultiDisplayWindowBase::setVServers(const UInt32 value) 137 121 { 138 122 editSField(VServersFieldMask); … … 152 136 //! Get the value of the MultiDisplayWindow::_sfManageClientViewports field. 153 137 inline 154 const boolMultiDisplayWindowBase::getManageClientViewports(void) const138 bool MultiDisplayWindowBase::getManageClientViewports(void) const 155 139 { 156 140 return _sfManageClientViewports.getValue(); 157 141 } 158 142 159 #ifdef OSG_1_GET_COMPAT160 inline161 bool &MultiDisplayWindowBase::getManageClientViewports(void)162 {163 return this->editManageClientViewports();164 }165 #endif166 167 143 //! Set the value of the MultiDisplayWindow::_sfManageClientViewports field. 168 144 inline 169 void MultiDisplayWindowBase::setManageClientViewports(const bool &value)145 void MultiDisplayWindowBase::setManageClientViewports(const bool value) 170 146 { 171 147 editSField(ManageClientViewportsFieldMask); … … 185 161 //! Get the value of the MultiDisplayWindow::_sfXOverlap field. 186 162 inline 187 const Int32MultiDisplayWindowBase::getXOverlap(void) const163 Int32 MultiDisplayWindowBase::getXOverlap(void) const 188 164 { 189 165 return _sfXOverlap.getValue(); 190 166 } 191 167 192 #ifdef OSG_1_GET_COMPAT193 inline194 Int32 &MultiDisplayWindowBase::getXOverlap (void)195 {196 return this->editXOverlap ();197 }198 #endif199 200 168 //! Set the value of the MultiDisplayWindow::_sfXOverlap field. 201 169 inline 202 void MultiDisplayWindowBase::setXOverlap(const Int32 &value)170 void MultiDisplayWindowBase::setXOverlap(const Int32 value) 203 171 { 204 172 editSField(XOverlapFieldMask); … … 218 186 //! Get the value of the MultiDisplayWindow::_sfYOverlap field. 219 187 inline 220 const Int32MultiDisplayWindowBase::getYOverlap(void) const188 Int32 MultiDisplayWindowBase::getYOverlap(void) const 221 189 { 222 190 return _sfYOverlap.getValue(); 223 191 } 224 192 225 #ifdef OSG_1_GET_COMPAT226 inline227 Int32 &MultiDisplayWindowBase::getYOverlap (void)228 {229 return this->editYOverlap ();230 }231 #endif232 233 193 //! Set the value of the MultiDisplayWindow::_sfYOverlap field. 234 194 inline 235 void MultiDisplayWindowBase::setYOverlap(const Int32 &value)195 void MultiDisplayWindowBase::setYOverlap(const Int32 value) 236 196 { 237 197 editSField(YOverlapFieldMask);
