merge with master
[platform/framework/web/wrt-plugins-common.git] / src / Commons / Dimension.h
index 5c0a362..703e0c0 100644 (file)
@@ -22,7 +22,6 @@
 
 namespace WrtDeviceApis {
 namespace Commons {
-
 /**
  * Encapsulates width and height of a component.
  */
@@ -41,11 +40,10 @@ class Dimension
      * @param height Specified height.
      */
     Dimension(ValueType width,
-            ValueType height) :
+              ValueType height) :
         m_width(width),
         m_height(height)
-    {
-    }
+    {}
 
     ValueType getWidth() const
     {
@@ -58,7 +56,7 @@ class Dimension
     }
 
     void setSize(ValueType width,
-            ValueType height)
+                 ValueType height)
     {
         m_width = width;
         m_height = height;
@@ -68,7 +66,6 @@ class Dimension
     ValueType m_width;
     ValueType m_height;
 };
-
 }
 } // WrtDeviceApisCommon