Index: compiled/WhiteListFilter.h |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/compiled/WhiteListFilter.h |
@@ -0,0 +1,16 @@ |
+#ifndef ADBLOCKPLUS_WHITELISTFILTER_H |
+#define ADBLOCKPLUS_WHITELISTFILTER_H |
+ |
+#include <string> |
+ |
+#include "Filter.h" |
+#include "RegExpFilter.h" |
+ |
+class WhiteListFilter : public RegExpFilter |
+{ |
+public: |
+ WhiteListFilter(const std::u16string& text); |
+ Type get_type(); |
+}; |
+ |
+#endif |