Index: shell/src/MatchesCommand.h |
=================================================================== |
--- a/shell/src/MatchesCommand.h |
+++ b/shell/src/MatchesCommand.h |
@@ -1,15 +1,20 @@ |
#ifndef MATCHES_COMMAND_H |
#define MATCHES_COMMAND_H |
+#include <AdblockPlus.h> |
+ |
#include "Command.h" |
class MatchesCommand : public Command |
{ |
public: |
- MatchesCommand(); |
+ MatchesCommand(AdblockPlus::FilterEngine& filterEngine); |
void operator()(const std::string& arguments); |
std::string GetDescription() const; |
std::string GetUsage() const; |
+ |
+private: |
+ AdblockPlus::FilterEngine& filterEngine; |
}; |
#endif |