- 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/ConfigFileEntryVectorValue.h
r9559 r11071 65 65 66 66 /// Destructor 67 inline ~ConfigFileEntryVectorValue() {}67 inline ~ConfigFileEntryVectorValue() = default; 68 68 69 inline unsigned int getIndex() const69 virtual inline unsigned int getIndex() const override 70 70 { return this->index_; } 71 71 72 72 /// Returns the "key" of the value (the name of the vector plus the index of the element) 73 inline const std::string& getKeyString() const73 virtual inline const std::string& getKeyString() const override 74 74 { return this->keyString_; } 75 75 76 76 private: 77 v oid update();77 virtual void update() override; 78 78 79 79 unsigned int index_; ///< The index of the element in the vector
Note: See TracChangeset
for help on using the changeset viewer.