fb2html.h 343 B

1234567891011121314151617
  1. #ifndef FB2HTML_H
  2. #define FB2HTML_H
  3. #include <QWebElement>
  4. class Fb2WebElement : public QWebElement
  5. {
  6. public:
  7. Fb2WebElement() {}
  8. Fb2WebElement(const QWebElement &x) : QWebElement(x) {}
  9. Fb2WebElement &operator=(const QWebElement &x) { QWebElement::operator=(x); return *this; }
  10. public:
  11. void select();
  12. };
  13. #endif // FB2HTML_H