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