Sha256: a6ae6f667e3ca3efdc7b7a0749f57f70563d13ecf830823abc80090e99229bb0

Contents?: true

Size: 361 Bytes

Versions: 4

Compression:

Stored size: 361 Bytes

Contents

#ifndef SUNSCRAPERPROXY_H
#define SUNSCRAPERPROXY_H

#include <QObject>

class SunscraperProxy : public QObject
{
    Q_OBJECT

public:
    SunscraperProxy(QObject *parent, unsigned queryId);

    Q_INVOKABLE void finish();

signals:
    void finished(unsigned queryId);

private:
    unsigned m_queryId;

    SunscraperProxy();
};

#endif // SUNSCRAPERPROXY_H

Version data entries

4 entries across 4 versions & 1 rubygems

Version Path
sunscraper-1.2.0 ext/common/sunscraperproxy.h
sunscraper-1.2.0.pre2 ext/common/sunscraperproxy.h
sunscraper-1.2.0.pre1 ext/common/sunscraperproxy.h
sunscraper-1.2.0.beta1 ext/common/sunscraperproxy.h