Index: shell/src/Main.cpp |
=================================================================== |
--- a/shell/src/Main.cpp |
+++ b/shell/src/Main.cpp |
@@ -3,6 +3,7 @@ |
#include <iostream> |
#include <sstream> |
+#include "GcCommand.h" |
#include "HelpCommand.h" |
#include "SubscriptionsCommand.h" |
#include "MatchesCommand.h" |
@@ -63,6 +64,7 @@ |
jsEngine.Load("adblockplus.js"); |
CommandMap commands; |
+ Add(commands, new GcCommand(jsEngine)); |
Add(commands, new HelpCommand(commands)); |
Add(commands, new SubscriptionsCommand(jsEngine)); |
Add(commands, new MatchesCommand()); |