UltraScan III
us_http_post.h
Go to the documentation of this file.
1 #ifndef US_HTTP_POST_H
3 #define US_HTTP_POST_H
4 
5 #include <QtCore>
6 #include <QtNetwork>
7 
8 #include "us_extern.h"
9 
11 
12 class US_UTIL_EXTERN US_HttpPost : public QObject
13 {
14  Q_OBJECT
15 
16  public:
20  US_HttpPost( const QString&, const QString& );
21 
22  public slots:
24  void postFinished( void );
25 
29  void postError( QNetworkReply::NetworkError );
30 
31  signals:
33  void US_Http_post_response( const QString& );
34 
35  private:
36  QNetworkReply* reply;
37 };
38 
39 #endif