| 60 | } |
| 61 | |
| 62 | void parse(int* i, ValueRef const& v) { |
| 63 | // FIXME: Sanity checking |
| 64 | *i = atoi(v.toString().c_str()); |
| 65 | } |
| 66 | |
| 67 | void parseReplicationPolicy(Reference<IReplicationPolicy>* policy, ValueRef const& v) { |
| 68 | BinaryReader reader(v, IncludeVersion()); |
no test coverage detected