| 23 | void serialize(std::ostream &os, NGT::ObjectSpace *ospace = 0) { os.write((char *)&value, sizeof(value)); } |
| 24 | void deserialize(std::istream &is, NGT::ObjectSpace *ospace = 0) { is.read((char *)&value, sizeof(value)); } |
| 25 | static size_t getSerializedDataSize() { return sizeof(uint64_t); } |
| 26 | uint64_t value; |
| 27 | }; |
| 28 |
nothing calls this directly
no outgoing calls
no test coverage detected