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