example.h 404 B

12345678910111213141516171819202122232425
  1. #ifndef EXAMPLE_H_
  2. #define EXAMPLE_H_
  3. #include <QObject>
  4. class QMainWindow;
  5. class QWebFrame;
  6. class Q_DECL_EXPORT Example : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. Example(QObject *parent = 0);
  11. virtual ~Example();
  12. void setEnvironment(QMainWindow *parentWindow, QWebFrame *webFrame);
  13. public slots:
  14. QString getValue() const;
  15. };
  16. #endif /* EXAMPLE_H_ */