- Timestamp:
- 05/05/08 06:39:01 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/Source/System/FieldContainer/Attachments/OSGStringAttributeMapBase.inl
r787 r1193 77 77 //! Get the value of the \a index element the StringAttributeMap::_mfKeys field. 78 78 inline 79 const std::string &StringAttributeMapBase::getKeys(const UInt32 index) const79 const std::string StringAttributeMapBase::getKeys(const UInt32 index) const 80 80 { 81 81 return _mfKeys[index]; … … 88 88 89 89 return _mfKeys[index]; 90 }91 92 //! Get the StringAttributeMap::_mfKeys field.93 inline94 MFString &StringAttributeMapBase::editKeys(void)95 {96 editMField(KeysFieldMask, _mfKeys);97 98 return _mfKeys;99 90 } 100 91 … … 115 106 116 107 117 //! Get the StringAttributeMap::_mfKeys field.118 inline119 const MFString &StringAttributeMapBase::getKeys(void) const120 {121 return _mfKeys;122 }123 124 108 //! Get the value of the \a index element the StringAttributeMap::_mfValues field. 125 109 inline 126 const std::string &StringAttributeMapBase::getValues(const UInt32 index) const110 const std::string StringAttributeMapBase::getValues(const UInt32 index) const 127 111 { 128 112 return _mfValues[index]; … … 135 119 136 120 return _mfValues[index]; 137 }138 139 //! Get the StringAttributeMap::_mfValues field.140 inline141 MFString &StringAttributeMapBase::editValues(void)142 {143 editMField(ValuesFieldMask, _mfValues);144 145 return _mfValues;146 121 } 147 122 … … 161 136 #endif 162 137 163 164 //! Get the StringAttributeMap::_mfValues field.165 inline166 const MFString &StringAttributeMapBase::getValues(void) const167 {168 return _mfValues;169 }170 138 171 139
