- Timestamp:
- Nov 19, 2015, 11:40:28 AM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/branches/cpp11_v2/src/libraries/core/config/ConfigFileEntryComment.h
r9559 r10817 56 56 inline virtual ~ConfigFileEntryComment() {} 57 57 58 inline virtual const std::string& getName() const 58 inline virtual const std::string& getName() const override 59 59 { return this->comment_; } 60 60 61 inline virtual void setComment(const std::string& comment) 61 inline virtual void setComment(const std::string& comment) override 62 62 { this->comment_ = comment; } 63 63 64 inline virtual void setValue(const std::string& value) 64 inline virtual void setValue(const std::string& value) override 65 65 {} 66 inline virtual const std::string& getValue() const 66 inline virtual const std::string& getValue() const override 67 67 { return BLANKSTRING; } 68 68 69 inline void setString(bool bString) 69 inline void setString(bool bString) override 70 70 {} 71 71 72 inline virtual const std::string& getFileEntry() const 72 inline virtual const std::string& getFileEntry() const override 73 73 { return this->comment_; } 74 74
Note: See TracChangeset
for help on using the changeset viewer.