| 223 | |
| 224 | public: |
| 225 | void UnpackLeaf(const char* c, TFloat& t) const { |
| 226 | TUInt u = 0; |
| 227 | TPacker().UnpackLeaf(c, u); |
| 228 | t = FromUInt(u); |
| 229 | } |
| 230 | |
| 231 | void PackLeaf(char* c, const TFloat& t, size_t sz) const { |
| 232 | TPacker().PackLeaf(c, ToUInt(t), sz); |
nothing calls this directly
no test coverage detected