| 116 | } |
| 117 | |
| 118 | void P2Data::load(const Ring& Rg) |
| 119 | { |
| 120 | string filename = get_filename(Rg); |
| 121 | if (OnlineOptions::singleton.verbose) |
| 122 | cerr << "Loading from " << filename << endl; |
| 123 | octetStream os; |
| 124 | os.input(filename); |
| 125 | unpack(os); |
| 126 | } |
| 127 | |
| 128 | void P2Data::store(const Ring& Rg) const |
| 129 | { |
no test coverage detected