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