Index: compiled/WhiteListFilter.cpp |
=================================================================== |
new file mode 100644 |
--- /dev/null |
+++ b/compiled/WhiteListFilter.cpp |
@@ -0,0 +1,12 @@ |
+#include "WhiteListFilter.h" |
+ |
+WhiteListFilter::WhiteListFilter(const std::u16string& text, |
+ const std::u16string& pattern, const std::u16string& options) |
+ : RegExpFilter(text, pattern, options) |
+{ |
+} |
+ |
+Filter::Type WhiteListFilter::GetType() const |
+{ |
+ return Type::WHITELIST; |
+} |