diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2014-06-30 14:06:03 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2014-06-30 14:06:03 -0700 |
commit | 8315f44d2c447d5a6a1dcd9c505cb85fd73469be (patch) | |
tree | 7ed68d1f3b8f09e89d219dddf2e1d09a6751a148 /qt-ui/subsurfacewebservices.h | |
parent | 5b93c61348d29c5e9aac4978cf37f7f9343200da (diff) | |
parent | e4a88db7dc197eee3a7f63ba1fc725c10a195073 (diff) | |
download | subsurface-8315f44d2c447d5a6a1dcd9c505cb85fd73469be.tar.gz |
Merge branch 'survey'
Diffstat (limited to 'qt-ui/subsurfacewebservices.h')
-rw-r--r-- | qt-ui/subsurfacewebservices.h | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/qt-ui/subsurfacewebservices.h b/qt-ui/subsurfacewebservices.h index b54da67c7..f2138ac6f 100644 --- a/qt-ui/subsurfacewebservices.h +++ b/qt-ui/subsurfacewebservices.h @@ -97,6 +97,20 @@ private: bool uploadMode; }; +class UserSurveyServices : public WebServices { + Q_OBJECT +public: + void sendSurvey(QString values); + explicit UserSurveyServices(QWidget *parent = 0, Qt::WindowFlags f = 0); +private +slots: + // need to declare them as no ops or Qt4 is unhappy + virtual void startDownload() { } + virtual void startUpload() { } + virtual void buttonClicked(QAbstractButton *button) { } + +}; + #ifdef __cplusplus extern "C" { #endif |