[Release] wrt-plugins-common_0.3.79
[platform/framework/web/wrt-plugins-common.git] / src / modules / API / WidgetDB / IWidgetFeature.h
index 17e635d..2371c1e 100644 (file)
@@ -32,24 +32,12 @@ namespace Api {
 class IWidgetFeature
 {
   public:
-    typedef std::pair<std::string, std::string> Param;
-    typedef std::list<Param> Params;
-    typedef Params::const_iterator ParamsIterator;
-
-  public:
 
     virtual ~IWidgetFeature()
     {}
 
     virtual std::string getName() const = 0;
 
-    virtual bool isRequired() const = 0;
-
-    virtual Params getParams() const = 0;
-
-    virtual void addParam(const std::string& paramName,
-                          const std::string& paramValue) = 0;
-
     virtual bool isRequestedByWidget() const = 0;
 };