- Timestamp:
- Jan 17, 2016, 10:29:21 PM (9 years ago)
- Location:
- code/trunk
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk
- Property svn:mergeinfo changed
-
code/trunk/src/libraries/core/config/ConfigFileSection.h
r9684 r11071 39 39 #include <string> 40 40 #include <list> 41 #include "util/StringUtils.h" 41 42 #include "ConfigFileEntry.h" 42 43 … … 160 161 std::list<ConfigFileEntry*>& getEntries() 161 162 { return this->entries_; } 162 /// Returns the begin-iterator of the list of entries in this section. 163 std::list<ConfigFileEntry*>::const_iterator getEntriesBegin() const 164 { return this->entries_.begin(); } 165 /// Returns the end-iterator of the list of entries in this section. 166 std::list<ConfigFileEntry*>::const_iterator getEntriesEnd() const 167 { return this->entries_.end(); } 163 const std::list<ConfigFileEntry*>& getEntries() const 164 { return this->entries_; } 168 165 169 166 std::list<ConfigFileEntry*>::iterator getOrCreateEntryIterator(const std::string& name, const std::string& fallback, bool bString);
Note: See TracChangeset
for help on using the changeset viewer.