Adding files to initialize, update, and read key-value (to be used together with...
[iotcloud.git] / version2 / src / C / Liveness.h
1 #ifndef LIVENESS_H
2 #define LIVENESS_H
3
4 class Liveness {
5 public:
6         /**
7          * Returns a char encoding the type of the entry object.
8          */
9         virtual char getType() = 0;
10 };
11
12 #endif