added automatic timeout for get() and set() commands
[profile/ivi/automotive-message-broker.git] / lib / abstractpropertytype.h
index a2ef5ec..b22be1a 100644 (file)
@@ -70,6 +70,13 @@ public:
                return one == two;
        }
 
+       bool operator != (AbstractPropertyType &other)
+       {
+               std::string one = toString();
+               std::string two = other.toString();
+               return one != two;
+       }
+
        std::string name;
 
        double timestamp;