Show
Ignore:
Timestamp:
05/05/08 06:39:01 (4 months ago)
Author:
vossg
Message:

changed: base rebuild

Files:

Legend:

Unmodified
Added
Removed
Modified
Copied
Moved
  • trunk/Source/System/FieldContainer/Attachments/OSGStringAttributeMapBase.inl

    r787 r1193  
    7777//! Get the value of the \a index element the StringAttributeMap::_mfKeys field. 
    7878inline 
    79 const std::string &StringAttributeMapBase::getKeys(const UInt32 index) const 
     79const std::string StringAttributeMapBase::getKeys(const UInt32 index) const 
    8080{ 
    8181    return _mfKeys[index]; 
     
    8888 
    8989    return _mfKeys[index]; 
    90 } 
    91  
    92 //! Get the StringAttributeMap::_mfKeys field. 
    93 inline 
    94 MFString &StringAttributeMapBase::editKeys(void) 
    95 { 
    96     editMField(KeysFieldMask, _mfKeys); 
    97  
    98     return _mfKeys; 
    9990} 
    10091 
     
    115106 
    116107 
    117 //! Get the StringAttributeMap::_mfKeys field. 
    118 inline 
    119 const MFString &StringAttributeMapBase::getKeys(void) const 
    120 { 
    121     return _mfKeys; 
    122 } 
    123  
    124108//! Get the value of the \a index element the StringAttributeMap::_mfValues field. 
    125109inline 
    126 const std::string &StringAttributeMapBase::getValues(const UInt32 index) const 
     110const std::string StringAttributeMapBase::getValues(const UInt32 index) const 
    127111{ 
    128112    return _mfValues[index]; 
     
    135119 
    136120    return _mfValues[index]; 
    137 } 
    138  
    139 //! Get the StringAttributeMap::_mfValues field. 
    140 inline 
    141 MFString &StringAttributeMapBase::editValues(void) 
    142 { 
    143     editMField(ValuesFieldMask, _mfValues); 
    144  
    145     return _mfValues; 
    146121} 
    147122 
     
    161136#endif 
    162137 
    163  
    164 //! Get the StringAttributeMap::_mfValues field. 
    165 inline 
    166 const MFString &StringAttributeMapBase::getValues(void) const 
    167 { 
    168     return _mfValues; 
    169 } 
    170138 
    171139