summaryrefslogtreecommitdiff
path: root/src/utils/files.h
diff options
context:
space:
mode:
authorAndrei Karas <akaras@inbox.ru>2017-02-14 22:41:07 +0300
committerAndrei Karas <akaras@inbox.ru>2017-02-14 22:41:07 +0300
commit56d6454ba617d1dcddbbaa21e2066a7db0caee75 (patch)
tree5012e55f393db2d62b40eb64142fa4317b16c571 /src/utils/files.h
parentbdec92381ef60cd027292ed63e254e8de70028d9 (diff)
downloadplus-56d6454ba617d1dcddbbaa21e2066a7db0caee75.tar.gz
plus-56d6454ba617d1dcddbbaa21e2066a7db0caee75.tar.bz2
plus-56d6454ba617d1dcddbbaa21e2066a7db0caee75.tar.xz
plus-56d6454ba617d1dcddbbaa21e2066a7db0caee75.zip
Move some virtfs replated functions from files.cpp into virtfstools.cpp
Diffstat (limited to 'src/utils/files.h')
-rw-r--r--src/utils/files.h19
1 files changed, 0 insertions, 19 deletions
diff --git a/src/utils/files.h b/src/utils/files.h
index 0dd2cd739..b91f7e9ab 100644
--- a/src/utils/files.h
+++ b/src/utils/files.h
@@ -53,22 +53,8 @@ namespace Files
int copyFile(const std::string &restrict pFrom,
const std::string &restrict pTo);
- void getFiles(const std::string &path, StringVect &list);
-
- void getDirs(const std::string &path, StringVect &list);
-
- void getFilesWithDir(const std::string &restrict path,
- StringVect &restrict list);
-
bool existsLocal(const std::string &path);
- std::string getPath(const std::string &file);
-
- bool loadTextFile(const std::string &fileName,
- StringVect &lines);
-
- std::string loadTextFileString(const std::string &fileName);
-
bool loadTextFileLocal(const std::string &fileName,
StringVect &lines);
@@ -77,11 +63,6 @@ namespace Files
const std::string &restrict text);
void deleteFilesInDirectory(std::string path);
-
- void getFilesInDir(const std::string &dir,
- StringVect &list,
- const std::string &ext);
-
} // namespace Files
#endif // UTILS_FILES_H