Sha256: 3effa8da77d32ba557dd5c0092eb5dfda74853f4dc58e164d6f12f507e5ae037
Contents?: true
Size: 392 Bytes
Versions: 1
Compression:
Stored size: 392 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 *_webPage; unsigned _queryId; }; #endif // SUNSCRAPERPROXY_H
Version data entries
1 entries across 1 versions & 1 rubygems
Version | Path |
---|---|
sunscraper-1.0.0 | ext/sunscraperproxy.h |