| 144 | virtual ~Constructor() = default; |
| 145 | |
| 146 | void Add(const std::string& key, const Slice& value) { |
| 147 | data_[key] = value.ToString(); |
| 148 | } |
| 149 | |
| 150 | // Finish constructing the data structure with all the keys that have |
| 151 | // been added so far. Returns the keys in sorted order in "*keys" |