| 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     const std::u16string& domains, const std::u16string& selector) |   4     const ElemHideBaseData& data) | 
|   5     : ElemHideBase(text, domains, selector) |   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 |