| Index: compiled/ElemHideFilter.h | 
| =================================================================== | 
| new file mode 100644 | 
| --- /dev/null | 
| +++ b/compiled/ElemHideFilter.h | 
| @@ -0,0 +1,17 @@ | 
| +#ifndef ADBLOCKPLUS_ELEMHIDEFILTER_H | 
| +#define ADBLOCKPLUS_ELEMHIDEFILTER_H | 
| + | 
| +#include <cstddef> | 
| +#include <string> | 
| + | 
| +#include "Filter.h" | 
| +#include "ElemHideBase.h" | 
| + | 
| +class ElemHideFilter: public ElemHideBase | 
| +{ | 
| +public: | 
| +  ElemHideFilter(const std::u16string& text, size_t domainsEnd, size_t selectorStart); | 
| +  Type GetType(); | 
| +}; | 
| + | 
| +#endif | 
|  |