- Timestamp:
- Jan 17, 2016, 8:40:36 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v3/src/libraries/core/class/Identifier.h
r11054 r11070 204 204 /// Returns the map that stores all XMLPort params. 205 205 inline const std::map<std::string, XMLPortParamContainer*>& getXMLPortParamMap() const { return this->xmlportParamContainers_; } 206 /// Returns a const_iterator to the beginning of the map that stores all XMLPort params.207 inline std::map<std::string, XMLPortParamContainer*>::const_iterator getXMLPortParamMapBegin() const { return this->xmlportParamContainers_.begin(); }208 /// Returns a const_iterator to the end of the map that stores all XMLPort params.209 inline std::map<std::string, XMLPortParamContainer*>::const_iterator getXMLPortParamMapEnd() const { return this->xmlportParamContainers_.end(); }210 206 211 207 /// Returns the map that stores all XMLPort objects. 212 208 inline const std::map<std::string, XMLPortObjectContainer*>& getXMLPortObjectMap() const { return this->xmlportObjectContainers_; } 213 /// Returns a const_iterator to the beginning of the map that stores all XMLPort objects.214 inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapBegin() const { return this->xmlportObjectContainers_.begin(); }215 /// Returns a const_iterator to the end of the map that stores all XMLPort objects.216 inline std::map<std::string, XMLPortObjectContainer*>::const_iterator getXMLPortObjectMapEnd() const { return this->xmlportObjectContainers_.end(); }217 209 218 210 void addXMLPortParamContainer(const std::string& paramname, XMLPortParamContainer* container);
Note: See TracChangeset
for help on using the changeset viewer.