merge with master
[platform/framework/web/wrt-plugins-common.git] / src / modules / API / LocalStorage / ILocalStorage.h
index d1a4db7..6ee677e 100644 (file)
@@ -30,7 +30,6 @@
 namespace WrtDeviceApis {
 namespace LocalStorage {
 namespace Api {
-
 class ILocalStorage
 {
   public:
@@ -56,19 +55,21 @@ class ILocalStorage
      *
      */
     virtual DPL::Optional<std::string> getValue(
-            const std::string& key) const = 0;
+        const std::string& key) const = 0;
 
     /**
      * Clears the local storage
      * @param removeReadOnly - true -remove all elements
-     *                          false - ommit items which have read only flag set
+     *                          false - ommit items which have read only flag
+     * set
      */
     virtual void clear(bool removeReadOnly) = 0;
 
     /**
      * Get number of elements in local storage
      * @param removeReadOnly - true -remove all elements
-     *                          false - ommit items which have read only flag set
+     *                          false - ommit items which have read only flag
+     * set
      */
     virtual size_t getStorageSize() const = 0;
 
@@ -81,13 +82,10 @@ class ILocalStorage
      * virtual destructor
      */
     virtual ~ILocalStorage()
-    {
-    }
-
+    {}
 };
 
 typedef DPL::SharedPtr<ILocalStorage> ILocalStoragePtr;
-
 } // Api
 } // LocalStorage
 } // WrtDeviceApis