diff options
author | Andreas Stöckel <astoecke@techfak.uni-bielefeld.de> | 2015-02-16 18:57:36 +0100 |
---|---|---|
committer | Andreas Stöckel <andreas@somweyr.de> | 2015-02-16 18:57:36 +0100 |
commit | 67f5572b423345a6e243516070a335a521459384 (patch) | |
tree | a814c6d5c626016614348990205ee1e8dc8a8801 /src/plugins/filesystem/FileLocator.hpp | |
parent | 7477cd0f968fa4c8446972b711b0d66252ab3431 (diff) |
Implemented autocomplete in FileLocator
Diffstat (limited to 'src/plugins/filesystem/FileLocator.hpp')
-rw-r--r-- | src/plugins/filesystem/FileLocator.hpp | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/src/plugins/filesystem/FileLocator.hpp b/src/plugins/filesystem/FileLocator.hpp index 1c3e494..14988a8 100644 --- a/src/plugins/filesystem/FileLocator.hpp +++ b/src/plugins/filesystem/FileLocator.hpp @@ -81,6 +81,10 @@ protected: const ResourceType type, const std::string &relativeTo) const override; + std::vector<std::string> doAutocomplete( + const std::string &path, const ResourceType type, + const std::string &relativeTo) const override; + std::unique_ptr<std::istream> doStream( const std::string &location) const override; |