| 75 | } |
| 76 | |
| 77 | void Property::addValue(const std::string &value) { |
| 78 | PropertyValue vn; |
| 79 | vn = value; |
| 80 | values_.push_back(std::move(vn)); |
| 81 | } |
| 82 | |
| 83 | bool Property::operator<(const Property &right) const { |
| 84 | return name_ < right.name_; |
no outgoing calls
no test coverage detected