| 142 | } |
| 143 | |
| 144 | void SavepointTableService::encodeDecode(boost::property_tree::ptree& tree, SavepointTable& table, ParserTask task) const |
| 145 | { |
| 146 | JsonParser::encodeDecode(tree, table._sequenceNumber, 0, "sequence number", task); |
| 147 | encodeDecode(tree, table._entries, task); |
| 148 | } |
| 149 | |
| 150 | void SavepointTableService::encodeDecode(boost::property_tree::ptree& tree, std::deque<SavepointEntry>& entries, ParserTask task) const |
| 151 | { |
nothing calls this directly
no test coverage detected