Remove dependency to std::vector and property::value from property notification API
[platform/core/uifw/dali-core.git] / dali / internal / event / common / property-conditions-impl.h
index f3fb03f..2a40d61 100644 (file)
@@ -2,7 +2,7 @@
 #define __DALI_INTERNAL_PROPERTY_CONDITIONS_H__
 
 /*
- * Copyright (c) 2014 Samsung Electronics Co., Ltd.
+ * Copyright (c) 2015 Samsung Electronics Co., Ltd.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -54,18 +54,18 @@ public:
     VariableStep          ///< Similar to step, except user can define a list of steps from reference value
   };
 
-  typedef Dali::PropertyCondition::ArgumentContainer ArgumentContainer;
-  typedef Dali::PropertyCondition::ArgumentIter ArgumentIter;
-  typedef Dali::PropertyCondition::ArgumentConstIter ArgumentConstIter;
-
+  /**
+   * Constructor
+   */
   PropertyCondition();
 
+  /**
+   * Virtual destructor
+   */
   virtual ~PropertyCondition();
 
 private:
 
-private:
-
   // Not implemented
   PropertyCondition(const PropertyCondition& rhs);
 
@@ -74,8 +74,8 @@ private:
 
 public:
 
-  Type type;                        ///< The condition Type.
-  ArgumentContainer arguments;      ///< The condition Arguments.
+  Type type;                     ///< The condition Type.
+  Dali::Vector<float> arguments; ///< The condition Arguments.
 
 };