Tizen 2.0 Release
[framework/web/wrt-commons.git] / modules / event / include / dpl / event / property.h
index 33da4df..7c87e50 100644 (file)
@@ -514,6 +514,14 @@ public:
         EmitEvent(PropertyEvent<Type>(value, this->m_model),
                   EmitMode::Auto);
     }
+
+    void SetWithoutLock(const Type &value)
+    {
+        if (this->m_storage.Get() == value)
+            return;
+
+        this->m_storage.Set(value);
+    }
 };
 
 }