Update wrt-plugins-common_0.3.53
[framework/web/wrt-plugins-common.git] / src / modules / API / TizenServiceEvent / TizenServiceEvent.cpp
  *    limitations under the License.
  */
 /**
- * @author          Zbigniew Kostrzewa (z.kostrzewa@samsung.com)
+ *
+ * @file        TizenServiceEvent.cpp
+ * @author      Yunchan Cho (yunchan.cho@samsung.com)
+ * @version     0.1
+ * @brief       Tizen appservice event class implementation
  */
 
-#ifndef WRTDEVICEAPIS_FILESYSTEM_COPYCOMMAND_H_
-#define WRTDEVICEAPIS_FILESYSTEM_COPYCOMMAND_H_
-
-#include "Command.h"
-#include <Filesystem/IPath.h>
+#include "TizenServiceEvent.h"
 
 namespace WrtDeviceApis {
-namespace Filesystem {
+namespace TizenServiceEvent {
+namespace Api {
+
+TizenServiceEvent::TizenServiceEvent()
+{
+}
 
-class CopyCommand : public Command
+TizenServiceEvent::~TizenServiceEvent()
 {
-  public:
-    CopyCommand(const Api::IPathPtr& src,
-                const Api::IPathPtr& dest);
-    void setRecursive(bool recursive);
-    void setForce(bool force);
-
-  protected:
-    std::string prepare();
-
-  private:
-    Api::IPathPtr m_src;
-    Api::IPathPtr m_dest;
-    bool m_recursive;
-    bool m_force;
-};
+}
 
+float TizenServiceEvent::getScale() const
+{
+    return m_scale;
 }
+
+std::string TizenServiceEvent::getBundle() const
+{
+    return m_bundle;
+}
+
+void TizenServiceEvent::setScale(const float scale)
+{
+    m_scale = scale;
+}
+
+void TizenServiceEvent::setBundle(const std::string& bundle)
+{
+    m_bundle = bundle;
 }
 
-#endif // WRTDEVICEAPIS_FILESYSTEM_COPYCOMMAND_H_
+} // Api
+} // TizenServiceEvent
+} // WrtDeviceApis