OLD | NEW |
(Empty) | |
| 1 #include <emscripten/bind.h> |
| 2 |
| 3 #include "ElemHideException.h" |
| 4 |
| 5 ElemHideException::ElemHideException(const std::wstring& text, |
| 6 size_t domainsEnd, size_t selectorStart) |
| 7 : ElemHideBase(text, domainsEnd, selectorStart) |
| 8 { |
| 9 } |
| 10 |
| 11 Filter::Type ElemHideException::GetType() const |
| 12 { |
| 13 return Type::ELEMHIDEEXCEPTION; |
| 14 } |
| 15 |
| 16 EMSCRIPTEN_BINDINGS(elemhideexception) |
| 17 { |
| 18 using namespace emscripten; |
| 19 class_<ElemHideException,base<ActiveFilter>>("ElemHideException"); |
| 20 } |
OLD | NEW |