- Timestamp:
- 05/05/08 06:39:01 (3 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/Cluster/Window/Base/OSGClusterWindowBase.inl
r1178 r1193 86 86 //! Get the value of the ClusterWindow::_sfConnectionType field. 87 87 inline 88 const std::string &ClusterWindowBase::getConnectionType(void) const88 const std::string ClusterWindowBase::getConnectionType(void) const 89 89 { 90 90 return _sfConnectionType.getValue(); … … 119 119 //! Get the value of the ClusterWindow::_sfConnectionInterface field. 120 120 inline 121 const std::string &ClusterWindowBase::getConnectionInterface(void) const121 const std::string ClusterWindowBase::getConnectionInterface(void) const 122 122 { 123 123 return _sfConnectionInterface.getValue(); … … 152 152 //! Get the value of the ClusterWindow::_sfConnectionDestination field. 153 153 inline 154 const std::string &ClusterWindowBase::getConnectionDestination(void) const154 const std::string ClusterWindowBase::getConnectionDestination(void) const 155 155 { 156 156 return _sfConnectionDestination.getValue(); … … 185 185 //! Get the value of the ClusterWindow::_sfConnectionParams field. 186 186 inline 187 const std::string &ClusterWindowBase::getConnectionParams(void) const187 const std::string ClusterWindowBase::getConnectionParams(void) const 188 188 { 189 189 return _sfConnectionParams.getValue(); … … 218 218 //! Get the value of the ClusterWindow::_sfServicePort field. 219 219 inline 220 const UInt32 &ClusterWindowBase::getServicePort(void) const220 const UInt32 ClusterWindowBase::getServicePort(void) const 221 221 { 222 222 return _sfServicePort.getValue(); … … 251 251 //! Get the value of the ClusterWindow::_sfServiceAddress field. 252 252 inline 253 const std::string &ClusterWindowBase::getServiceAddress(void) const253 const std::string ClusterWindowBase::getServiceAddress(void) const 254 254 { 255 255 return _sfServiceAddress.getValue(); … … 284 284 //! Get the value of the ClusterWindow::_sfServiceInterface field. 285 285 inline 286 const std::string &ClusterWindowBase::getServiceInterface(void) const286 const std::string ClusterWindowBase::getServiceInterface(void) const 287 287 { 288 288 return _sfServiceInterface.getValue(); … … 320 320 321 321 _sfClientWindow.setValue(value); 322 323 322 } 324 323 //! Get the value of the ClusterWindow::_sfInterleave field. … … 334 333 //! Get the value of the ClusterWindow::_sfInterleave field. 335 334 inline 336 const UInt32 &ClusterWindowBase::getInterleave(void) const335 const UInt32 ClusterWindowBase::getInterleave(void) const 337 336 { 338 337 return _sfInterleave.getValue(); … … 367 366 //! Get the value of the ClusterWindow::_sfFrameCount field. 368 367 inline 369 const UInt32 &ClusterWindowBase::getFrameCount(void) const368 const UInt32 ClusterWindowBase::getFrameCount(void) const 370 369 { 371 370 return _sfFrameCount.getValue(); … … 403 402 404 403 _sfComposer.setValue(value); 405 406 404 } 407 405 408 406 //! Get the value of the \a index element the ClusterWindow::_mfServers field. 409 407 inline 410 const std::string &ClusterWindowBase::getServers(const UInt32 index) const408 const std::string ClusterWindowBase::getServers(const UInt32 index) const 411 409 { 412 410 return _mfServers[index]; … … 421 419 } 422 420 423 //! Get the ClusterWindow::_mfServers field.424 inline425 MFString &ClusterWindowBase::editServers(void)426 {427 editMField(ServersFieldMask, _mfServers);428 429 return _mfServers;430 }431 432 421 #ifdef OSG_1_GET_COMPAT 433 422 inline … … 446 435 447 436 448 //! Get the ClusterWindow::_mfServers field.449 inline450 const MFString &ClusterWindowBase::getServers(void) const451 {452 return _mfServers;453 }454 455 437 //! Get the value of the \a index element the ClusterWindow::_mfAutostart field. 456 438 inline 457 const std::string &ClusterWindowBase::getAutostart(const UInt32 index) const439 const std::string ClusterWindowBase::getAutostart(const UInt32 index) const 458 440 { 459 441 return _mfAutostart[index]; … … 468 450 } 469 451 470 //! Get the ClusterWindow::_mfAutostart field.471 inline472 MFString &ClusterWindowBase::editAutostart(void)473 {474 editMField(AutostartFieldMask, _mfAutostart);475 476 return _mfAutostart;477 }478 479 452 #ifdef OSG_1_GET_COMPAT 480 453 inline … … 492 465 #endif 493 466 494 495 //! Get the ClusterWindow::_mfAutostart field.496 inline497 const MFString &ClusterWindowBase::getAutostart(void) const498 {499 return _mfAutostart;500 }501 467 502 468
