Show
Ignore:
Timestamp:
09/06/06 00:48:55 (2 years ago)
Author:
vossg
Message:

fixed : missing symbols (compat mode)

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/NodeCores/Drawables/Particles/OSGParticlesBase.cpp

    r2 r54  
    420420} 
    421421 
     422#ifdef OSG_1_COMPAT 
     423SFUInt32 *ParticlesBase::getSFMode(void) 
     424{ 
     425    return this->editSFMode(); 
     426} 
     427#endif 
     428 
    422429//! Get the Particles::_sfPositions field. 
    423430const SFGeoVectorPropertyPtr *ParticlesBase::getSFPositions(void) const 
     
    438445} 
    439446 
     447#ifdef OSG_1_COMPAT 
     448MFVec3f *ParticlesBase::getMFSizes(void) 
     449{ 
     450    return this->editMFSizes(); 
     451} 
     452#endif 
     453 
    440454//! Get the Particles::_sfSecPositions field. 
    441455const SFGeoVectorPropertyPtr *ParticlesBase::getSFSecPositions(void) const 
     
    468482} 
    469483 
     484#ifdef OSG_1_COMPAT 
     485MFInt32 *ParticlesBase::getMFIndices(void) 
     486{ 
     487    return this->editMFIndices(); 
     488} 
     489#endif 
     490 
    470491MFReal32 *ParticlesBase::editMFTextureZs(void) 
    471492{ 
     
    480501} 
    481502 
     503#ifdef OSG_1_COMPAT 
     504MFReal32 *ParticlesBase::getMFTextureZs(void) 
     505{ 
     506    return this->editMFTextureZs(); 
     507} 
     508#endif 
     509 
    482510SFUInt32 *ParticlesBase::editSFDrawOrder(void) 
    483511{ 
     
    492520} 
    493521 
     522#ifdef OSG_1_COMPAT 
     523SFUInt32 *ParticlesBase::getSFDrawOrder(void) 
     524{ 
     525    return this->editSFDrawOrder(); 
     526} 
     527#endif 
     528 
    494529SFBool *ParticlesBase::editSFDynamic(void) 
    495530{ 
     
    504539} 
    505540 
     541#ifdef OSG_1_COMPAT 
     542SFBool *ParticlesBase::getSFDynamic(void) 
     543{ 
     544    return this->editSFDynamic(); 
     545} 
     546#endif 
     547 
    506548SFUInt32 *ParticlesBase::editSFPump(void) 
    507549{ 
     
    516558} 
    517559 
     560#ifdef OSG_1_COMPAT 
     561SFUInt32 *ParticlesBase::getSFPump(void) 
     562{ 
     563    return this->editSFPump(); 
     564} 
     565#endif 
     566 
    518567SFParticleBSPTree *ParticlesBase::editSFBsp(void) 
    519568{ 
     
    528577} 
    529578 
     579#ifdef OSG_1_COMPAT 
     580SFParticleBSPTree *ParticlesBase::getSFBsp(void) 
     581{ 
     582    return this->editSFBsp(); 
     583} 
     584#endif 
     585 
    530586SFInt32 *ParticlesBase::editSFNumParticles(void) 
    531587{ 
     
    539595    return &_sfNumParticles; 
    540596} 
     597 
     598#ifdef OSG_1_COMPAT 
     599SFInt32 *ParticlesBase::getSFNumParticles(void) 
     600{ 
     601    return this->editSFNumParticles(); 
     602} 
     603#endif 
    541604 
    542605