Sha256: 2afa6911180f630ed5cd0e4a0e7d2402900292cc4c367be96a5ecbfe56cdcb91
Contents?: true
Size: 393 Bytes
Versions: 6
Compression:
Stored size: 393 Bytes
Contents
#ifndef SUNSCRAPERPROXY_H #define SUNSCRAPERPROXY_H #include <QObject> class QWebPage; class SunscraperProxy : public QObject { Q_OBJECT public: SunscraperProxy(QWebPage *parent, unsigned queryId); Q_INVOKABLE void finish(); signals: void finished(unsigned queryId, QString html); private: QWebPage *m_webPage; unsigned m_queryId; }; #endif // SUNSCRAPERPROXY_H
Version data entries
6 entries across 3 versions & 1 rubygems