diff --git a/parsetools.h b/parsetools.h index 62892061..f7525369 100644 --- a/parsetools.h +++ b/parsetools.h @@ -30,6 +30,11 @@ e-mail : support@circuitsathome.com struct MultiValueBuffer { uint8_t valueSize; void *pValue; + +public: + + MultiValueBuffer() : valueSize(0), pValue(NULL) { + }; } __attribute__((packed)); class MultiByteValueParser {