merge with master
[platform/framework/web/wrt-plugins-common.git] / src / modules / API / Filesystem / INode.h
index f9cb8d1..c227aa9 100644 (file)
@@ -34,7 +34,6 @@
 namespace WrtDeviceApis {
 namespace Filesystem {
 namespace Api {
-
 class INode :
     public Commons::EventRequestReceiver<EventListNodes>,
     public Commons::EventRequestReceiver<EventOpen>,
@@ -92,7 +91,7 @@ class INode :
      * @deprecated
      */
     virtual NodeList getChildNodes(const NodeFilterPtr& filter =
-                NodeFilterPtr()) const /* WRT_PLUGINS_DEPRECATED */ = 0;
+                                       NodeFilterPtr()) const /*DEPREC*/ = 0;
 
     /**
      * Gets list of direct descendant nodes.
@@ -135,8 +134,8 @@ class INode :
      * - OPT_RECURSIVE - attempt to create all necessary sub-directories
      */
     virtual INodePtr createChild(const IPathPtr& path,
-            NodeType type,
-            int options = OPT_NONE) = 0;
+                                 NodeType type,
+                                 int options = OPT_NONE) = 0;
 
     /**
      * Gets size of this node.
@@ -179,7 +178,6 @@ class INode :
   protected:
     INode();
 };
-
 } // API
 } // Filesystem
 } // WrtDeviceApis