- Timestamp:
- 09/06/06 00:48:55 (2 years ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/NodeCores/Groups/Misc/OSGProxyGroupBase.cpp
r2 r54 398 398 } 399 399 400 #ifdef OSG_1_COMPAT 401 SFBool *ProxyGroupBase::getSFEnabled(void) 402 { 403 return this->editSFEnabled(); 404 } 405 #endif 406 400 407 SFString *ProxyGroupBase::editSFUrl(void) 401 408 { … … 409 416 return &_sfUrl; 410 417 } 418 419 #ifdef OSG_1_COMPAT 420 SFString *ProxyGroupBase::getSFUrl(void) 421 { 422 return this->editSFUrl(); 423 } 424 #endif 411 425 412 426 //! Get the ProxyGroup::_sfRoot field. … … 428 442 } 429 443 444 #ifdef OSG_1_COMPAT 445 SFUInt32 *ProxyGroupBase::getSFState(void) 446 { 447 return this->editSFState(); 448 } 449 #endif 450 430 451 SFBool *ProxyGroupBase::editSFConcurrentLoad(void) 431 452 { … … 440 461 } 441 462 463 #ifdef OSG_1_COMPAT 464 SFBool *ProxyGroupBase::getSFConcurrentLoad(void) 465 { 466 return this->editSFConcurrentLoad(); 467 } 468 #endif 469 442 470 SFDynamicVolume *ProxyGroupBase::editSFVolume(void) 443 471 { … … 452 480 } 453 481 482 #ifdef OSG_1_COMPAT 483 SFDynamicVolume *ProxyGroupBase::getSFVolume(void) 484 { 485 return this->editSFVolume(); 486 } 487 #endif 488 454 489 SFUInt32 *ProxyGroupBase::editSFIndices(void) 455 490 { … … 464 499 } 465 500 501 #ifdef OSG_1_COMPAT 502 SFUInt32 *ProxyGroupBase::getSFIndices(void) 503 { 504 return this->editSFIndices(); 505 } 506 #endif 507 466 508 SFUInt32 *ProxyGroupBase::editSFTriangles(void) 467 509 { … … 476 518 } 477 519 520 #ifdef OSG_1_COMPAT 521 SFUInt32 *ProxyGroupBase::getSFTriangles(void) 522 { 523 return this->editSFTriangles(); 524 } 525 #endif 526 478 527 SFUInt32 *ProxyGroupBase::editSFPositions(void) 479 528 { … … 488 537 } 489 538 539 #ifdef OSG_1_COMPAT 540 SFUInt32 *ProxyGroupBase::getSFPositions(void) 541 { 542 return this->editSFPositions(); 543 } 544 #endif 545 490 546 SFUInt32 *ProxyGroupBase::editSFGeometries(void) 491 547 { … … 500 556 } 501 557 558 #ifdef OSG_1_COMPAT 559 SFUInt32 *ProxyGroupBase::getSFGeometries(void) 560 { 561 return this->editSFGeometries(); 562 } 563 #endif 564 502 565 SFString *ProxyGroupBase::editSFAbsoluteUrl(void) 503 566 { … … 512 575 } 513 576 577 #ifdef OSG_1_COMPAT 578 SFString *ProxyGroupBase::getSFAbsoluteUrl(void) 579 { 580 return this->editSFAbsoluteUrl(); 581 } 582 #endif 583 514 584 MFUInt8 *ProxyGroupBase::editMFInline(void) 515 585 { … … 523 593 return &_mfInline; 524 594 } 595 596 #ifdef OSG_1_COMPAT 597 MFUInt8 *ProxyGroupBase::getMFInline(void) 598 { 599 return this->editMFInline(); 600 } 601 #endif 525 602 526 603
