diff options
author | Andrei Karas <akaras@inbox.ru> | 2017-02-11 19:08:11 +0300 |
---|---|---|
committer | Andrei Karas <akaras@inbox.ru> | 2017-02-11 19:19:38 +0300 |
commit | 245fb04a1e112cc8d0918a8660474299d5ce223c (patch) | |
tree | eb5ab6266a4ff9551d2e08b9c14b61e353cd127f /src/resources/resourcemanager/resourcemanager.h | |
parent | f978c1bed85961e102951340669ca873328bcef3 (diff) | |
download | plus-245fb04a1e112cc8d0918a8660474299d5ce223c.tar.gz plus-245fb04a1e112cc8d0918a8660474299d5ce223c.tar.bz2 plus-245fb04a1e112cc8d0918a8660474299d5ce223c.tar.xz plus-245fb04a1e112cc8d0918a8660474299d5ce223c.zip |
Split virtfs api for add directories and archives.
Also remove useless resourcemanager functions for add/remove virtfs entries.
Diffstat (limited to 'src/resources/resourcemanager/resourcemanager.h')
-rw-r--r-- | src/resources/resourcemanager/resourcemanager.h | 17 |
1 files changed, 0 insertions, 17 deletions
diff --git a/src/resources/resourcemanager/resourcemanager.h b/src/resources/resourcemanager/resourcemanager.h index 58e74967f..6f6875361 100644 --- a/src/resources/resourcemanager/resourcemanager.h +++ b/src/resources/resourcemanager/resourcemanager.h @@ -68,23 +68,6 @@ class ResourceManager final : public MemoryCounter bool setWriteDir(const std::string &path) const; /** - * Adds a directory or archive to the search path. If append is true - * then the directory is added to the end of the search path, otherwise - * it is added at the front. - * - * @return <code>true</code> on success, <code>false</code> otherwise. - */ - bool addToSearchPath(const std::string &path, - const Append append) const; - - /** - * Remove a directory or archive from the search path. - * - * @return <code>true</code> on success, <code>false</code> otherwise. - */ - bool removeFromSearchPath(const std::string &path) const; - - /** * Searches for zip files and adds them to the search path. */ void searchAndAddArchives(const std::string &restrict path, |