edits
[iotcloud.git] / version2 / src / C / KeyValue.h
index bd384bef9944185369414af9ea7ca33164e25de3..9234b2dfbcc98a4a295d39670607c05015f58ac8 100644 (file)
@@ -18,6 +18,7 @@ public:
                key(_key),
                value(_value) {
        }
+       ~KeyValue();
 
        IoTString *getKey() { return key; }
        IoTString *getValue() { return value; }
@@ -27,4 +28,6 @@ public:
 };
 
 KeyValue *KeyValue_decode(ByteBuffer *bb);
+unsigned int hashKeyValue(KeyValue *kv);
+bool equalsKeyValue(KeyValue *a, KeyValue *b);
 #endif