| 137 | } |
| 138 | |
| 139 | void DataTable::save(const std::string &fileName) const |
| 140 | { |
| 141 | Serializer s; |
| 142 | s.serialize(*this); |
| 143 | s.saveToFile(fileName); |
| 144 | } |
| 145 | |
| 146 | void DataTable::load(const std::string &fileName) |
| 147 | { |
nothing calls this directly
no test coverage detected