Index: shell/src/GcCommand.h |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/shell/src/GcCommand.h |
@@ -0,0 +1,21 @@ |
+#ifndef GC_COMMAND_H |
+#define GC_COMMAND_H |
+ |
+#include <AdblockPlus.h> |
+#include <string> |
+ |
+#include "Command.h" |
+ |
+class GcCommand : public Command |
+{ |
+public: |
+ GcCommand(AdblockPlus::JsEngine& jsEngine); |
+ void operator()(const std::string& arguments); |
+ std::string GetDescription() const; |
+ std::string GetUsage() const; |
+ |
+private: |
+ AdblockPlus::JsEngine& jsEngine; |
+}; |
+ |
+#endif |