12345678910111213141516171819202122232425 |
- #ifndef EXAMPLE_H_
- #define EXAMPLE_H_
- #include <QObject>
- class QMainWindow;
- class QWebFrame;
- class Q_DECL_EXPORT Example : public QObject
- {
- Q_OBJECT
-
- public:
- Example(QObject *parent = 0);
- virtual ~Example();
-
- void setEnvironment(QMainWindow *parentWindow, QWebFrame *webFrame);
-
- public slots:
- QString getValue() const;
- };
- #endif /* EXAMPLE_H_ */
|