1
Fork 0
mirror of https://github.com/RGBCube/serenity synced 2025-07-28 15:47:34 +00:00

Assistant: Keep the set of providers in a Vector for easy iteration

This commit is contained in:
Andreas Kling 2021-07-03 20:46:33 +02:00
parent ee991fa4e0
commit e4199beccc
3 changed files with 19 additions and 26 deletions

View file

@ -145,6 +145,8 @@ public:
class FileProvider : public Provider {
public:
FileProvider();
void query(String const& query, Function<void(NonnullRefPtrVector<Result>)> on_complete) override;
void build_filesystem_cache();