Show
Ignore:
Timestamp:
04/22/08 04:54:20 (8 months ago)
Author:
vossg
Message:

renamed: FieldContainerAttachment? → Attachment

ContainerPool?ContainerAttachment?

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/FieldContainer/Misc/OSGContainerCollectionBase.inl

    r1178 r1184  
    4444 **                                                                         ** 
    4545 **     Do not change this file, changes should be done in the derived      ** 
    46  **     class ContainerPool
     46 **     class ContainerCollection
    4747 **                                                                         ** 
    4848 ***************************************************************************** 
     
    5454//! access the type of the class 
    5555inline 
    56 OSG::FieldContainerType &ContainerPoolBase::getClassType(void) 
     56OSG::FieldContainerType &ContainerCollectionBase::getClassType(void) 
    5757{ 
    5858    return _type; 
     
    6161//! access the numerical type of the class 
    6262inline 
    63 OSG::UInt32 ContainerPoolBase::getClassTypeId(void) 
     63OSG::UInt32 ContainerCollectionBase::getClassTypeId(void) 
    6464{ 
    6565    return _type.getId(); 
     
    6767 
    6868inline 
    69 OSG::UInt16 ContainerPoolBase::getClassGroupId(void) 
     69OSG::UInt16 ContainerCollectionBase::getClassGroupId(void) 
    7070{ 
    7171    return _type.getGroupId(); 
     
    7474/*------------------------------ get -----------------------------------*/ 
    7575 
    76 //! Get the value of the ContainerPool::_sfName field. 
     76//! Get the value of the ContainerCollection::_sfName field. 
    7777 
    7878inline 
    79 std::string &ContainerPoolBase::editName(void) 
     79std::string &ContainerCollectionBase::editName(void) 
    8080{ 
    8181    editSField(NameFieldMask); 
     
    8484} 
    8585 
    86 //! Get the value of the ContainerPool::_sfName field. 
     86//! Get the value of the ContainerCollection::_sfName field. 
    8787inline 
    88 const std::string &ContainerPoolBase::getName(void) const 
     88const std::string &ContainerCollectionBase::getName(void) const 
    8989{ 
    9090    return _sfName.getValue(); 
     
    9393#ifdef OSG_1_GET_COMPAT 
    9494inline 
    95 std::string         &ContainerPoolBase::getName           (void) 
     95std::string         &ContainerCollectionBase::getName           (void) 
    9696{ 
    9797    return this->editName           (); 
     
    9999#endif 
    100100 
    101 //! Set the value of the ContainerPool::_sfName field. 
     101//! Set the value of the ContainerCollection::_sfName field. 
    102102inline 
    103 void ContainerPoolBase::setName(const std::string &value) 
     103void ContainerCollectionBase::setName(const std::string &value) 
    104104{ 
    105105    editSField(NameFieldMask); 
     
    108108} 
    109109 
    110 //! Get the value of the \a index element the ContainerPool::_mfContainers field. 
     110//! Get the value of the \a index element the ContainerCollection::_mfContainers field. 
    111111inline 
    112 FieldContainerPtr ContainerPoolBase::getContainers(const UInt32 index) const 
     112FieldContainerPtr ContainerCollectionBase::getContainers(const UInt32 index) const 
    113113{ 
    114114    return _mfContainers[index]; 
    115115} 
    116116 
    117 //! Get the ContainerPool::_mfContainers field. 
     117//! Get the ContainerCollection::_mfContainers field. 
    118118inline 
    119 const MFUnrecFieldContainerPtr &ContainerPoolBase::getContainers(void) const 
     119const MFUnrecFieldContainerPtr &ContainerCollectionBase::getContainers(void) const 
    120120{ 
    121121    return _mfContainers; 
     
    125125#ifdef OSG_MT_CPTR_ASPECT 
    126126inline 
    127 void ContainerPoolBase::execSync (      ContainerPoolBase *pFrom, 
     127void ContainerCollectionBase::execSync (      ContainerCollectionBase *pFrom, 
    128128                                        ConstFieldMaskArg  whichField, 
    129129                                        AspectOffsetStore &oOffsets, 
     
    146146 
    147147inline 
    148 Char8 *ContainerPoolBase::getClassname(void) 
     148Char8 *ContainerCollectionBase::getClassname(void) 
    149149{ 
    150     return "ContainerPool"; 
     150    return "ContainerCollection"; 
    151151} 
    152 OSG_GEN_CONTAINERPTR(ContainerPool); 
     152OSG_GEN_CONTAINERPTR(ContainerCollection); 
    153153 
    154154OSG_END_NAMESPACE