Added HttpClient class skeleton.
[speedfreak] / Client / httpclient.h
diff --git a/Client/httpclient.h b/Client/httpclient.h
new file mode 100644 (file)
index 0000000..0ade96c
--- /dev/null
@@ -0,0 +1,31 @@
+/*
+ * Http client Connects application to server.
+ *
+ * @author     Tiina Kivilinna-Korhola
+ * @copyright  (c) 2010 Speed Freak team
+ * license     http://opensource.org/licenses/gpl-license.php GNU Public License
+ */
+
+#ifndef HTTPCLIENT_H
+#define HTTPCLIENT_H
+
+#include <QNetworkAccessManager>
+#include <QNetworkRequest>
+#include <QNetworkReply>
+
+
+class HttpClient : public QObject
+{
+    Q_OBJECT
+public:
+    HttpClient();
+    ~HttpClient();
+
+private:
+    QNetworkAccessManager *netManager;
+
+public slots:
+
+};
+
+#endif // HTTPCLIENT_H