LEFT | RIGHT |
1 #include "ElemHideException.h" | 1 #include "ElemHideException.h" |
2 | 2 |
3 ElemHideException::ElemHideException(const std::u16string& text, | 3 ElemHideException::ElemHideException(const String& text, |
4 size_t domainsEnd, size_t selectorStart) | 4 const ElemHideBaseData& data) |
5 : ElemHideBase(text, domainsEnd, selectorStart) | 5 : ElemHideBase(Type::ELEMHIDEEXCEPTION, text, data) |
6 { | 6 { |
7 } | 7 } |
8 | |
9 Filter::Type ElemHideException::GetType() const | |
10 { | |
11 return Type::ELEMHIDEEXCEPTION; | |
12 } | |
LEFT | RIGHT |