| 89 | } |
| 90 | |
| 91 | DataValue::DataValue(TypeId typeId) : Value(typeId) { |
| 92 | } |
| 93 | |
| 94 | DataValue::DataValue(const byte* buf, size_t len, ByteOrder byteOrder, TypeId typeId) : Value(typeId) { |
| 95 | read(buf, len, byteOrder); |
nothing calls this directly
no outgoing calls
no test coverage detected