Update wrt-plugins-common_0.3.53
[framework/web/wrt-plugins-common.git] / src / modules / API / WidgetDB / IWidgetFeature.h
index 97a90ca..7ee91eb 100644 (file)
@@ -22,7 +22,7 @@
 #ifndef WRT_PLUGINS_WRT_ENGINE_WIDGET_FEATURE_INTERFACE_H_
 #define WRT_PLUGINS_WRT_ENGINE_WIDGET_FEATURE_INTERFACE_H_
 
-#include <map>
+#include <list>
 #include <string>
 #include <dpl/shared_ptr.h>
 
@@ -33,7 +33,8 @@ namespace Api {
 class IWidgetFeature
 {
   public:
-    typedef std::map<std::string, std::string> Params;
+    typedef std::pair<std::string, std::string> Param;
+    typedef std::list<Param> Params;
     typedef Params::const_iterator ParamsIterator;
 
   public: