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