diff options
author | Dirk Hohndel <dirk@hohndel.org> | 2015-06-16 06:08:31 -0700 |
---|---|---|
committer | Dirk Hohndel <dirk@hohndel.org> | 2015-06-16 06:08:31 -0700 |
commit | 854f55fd89f399ba59881b8b11a52d20e3847f72 (patch) | |
tree | db23f2fbad65cea9b533591fd0f2499ddb239164 /checkcloudconnection.h | |
parent | 0fa0eb2879bf72654a7febf8b977b0ba6f515658 (diff) | |
download | subsurface-854f55fd89f399ba59881b8b11a52d20e3847f72.tar.gz |
Move checking the cloud connection into its own files
This isn't UI related and shouldn't have been in a file full of UI
functionality.
Signed-off-by: Dirk Hohndel <dirk@hohndel.org>
Diffstat (limited to 'checkcloudconnection.h')
-rw-r--r-- | checkcloudconnection.h | 15 |
1 files changed, 15 insertions, 0 deletions
diff --git a/checkcloudconnection.h b/checkcloudconnection.h new file mode 100644 index 000000000..6c85203ac --- /dev/null +++ b/checkcloudconnection.h @@ -0,0 +1,15 @@ +#ifndef CHECKCLOUDCONNECTION_H +#define CHECKCLOUDCONNECTION_H + +#include <QObject> + +#include "checkcloudconnection.h" + +class CheckCloudConnection : public QObject { + Q_OBJECT +public: + CheckCloudConnection(QObject *parent = 0); + static bool checkServer(); +}; + +#endif // CHECKCLOUDCONNECTION_H |