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