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