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>
This commit is contained in:
Dirk Hohndel 2015-06-16 06:08:31 -07:00
parent 0fa0eb2879
commit 854f55fd89
6 changed files with 78 additions and 58 deletions

15
checkcloudconnection.h Normal file
View file

@ -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