Branimir Karadžić 7 rokov pred
rodič
commit
91be7ef78c
1 zmenil súbory, kde vykonal 4 pridanie a 0 odobranie
  1. 4 0
      include/bx/filepath.h

+ 4 - 0
include/bx/filepath.h

@@ -112,15 +112,19 @@ namespace bx
 	};
 	};
 
 
 	/// Creates a directory named `_filePath`.
 	/// Creates a directory named `_filePath`.
+	///
 	bool make(const FilePath& _filePath, Error* _err = NULL);
 	bool make(const FilePath& _filePath, Error* _err = NULL);
 
 
 	/// Creates a directory named `_filePath` along with all necessary parents.
 	/// Creates a directory named `_filePath` along with all necessary parents.
+	///
 	bool makeAll(const FilePath& _filePath, Error* _err = NULL);
 	bool makeAll(const FilePath& _filePath, Error* _err = NULL);
 
 
 	/// Removes file or directory.
 	/// Removes file or directory.
+	///
 	bool remove(const FilePath& _filePath, Error* _err = NULL);
 	bool remove(const FilePath& _filePath, Error* _err = NULL);
 
 
 	/// Removes file or directory recursivelly.
 	/// Removes file or directory recursivelly.
+	///
 	bool removeAll(const FilePath& _filePath, Error* _err = NULL);
 	bool removeAll(const FilePath& _filePath, Error* _err = NULL);
 
 
 } // namespace bx
 } // namespace bx