12345678910111213141516171819202122232425 |
- #ifndef WCCGETREQUEST_H
- #define WCCGETREQUEST_H
- #include "wccnetworkrequestbase.h"
- #include "wccapi_export.h"
- namespace WccNameSpace {
- namespace Internal {
- class WCCAPI_EXPORT WccGetRequest : public WccNetworkRequestBase
- {
- Q_OBJECT
- public:
- explicit WccGetRequest(QObject *parent);
- WccGetRequest(QObject *parent, int id, const QString &url);
- ~WccGetRequest();
- void requestFinished();
- };
- }
- }
- #endif // WCCGETREQUEST_H
|