merge with master
[framework/web/wrt-plugins-common.git] / src / modules / API / SoftKeyboardChangeEvent / SoftKeyboardChangeEvent.h
index ef28353..df8f721 100644 (file)
 namespace WrtDeviceApis {
 namespace SoftKeyboardChangeEvent {
 namespace Api {
-
 class SoftKeyboardChangeEvent : public ISoftKeyboardChangeEvent
 {
-  public :
+  public:
     explicit SoftKeyboardChangeEvent(
-            std::string state,
-            int width,
-            int height);
+        std::string state,
+        int width,
+        int height);
     ~SoftKeyboardChangeEvent();
 
     std::string getState() const;
     int getWidth() const;
     int getHeight() const;
 
-  private :
+  private:
     std::string m_state;
     int m_width;
     int m_height;
 };
-
 } // Api
 } // SoftKeyboardChangeEvent
 } // WrtDeviceApis