Changeset 11098 for code/trunk/src/libraries/util/SubString.h
- Timestamp:
- Jan 26, 2016, 8:32:16 PM (9 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
code/trunk/src/libraries/util/SubString.h
r11071 r11098 115 115 public: 116 116 SubString(); 117 /// Copy constructor 118 SubString(const SubString& other) = default; 119 /// Move constructor 120 SubString(SubString&& other) = default; 117 121 SubString(const std::string& line, 118 122 const std::string& delimiters = SubString::WhiteSpaces, … … 133 137 // operate on the SubString 134 138 SubString& operator=(const SubString& other); 139 /// Move assignment 140 SubString& operator=(SubString&& other) = default; 135 141 bool operator==(const SubString& other) const; 136 142 bool compare(const SubString& other, size_t length = std::string::npos) const;
Note: See TracChangeset
for help on using the changeset viewer.