#ifndef SERVERMANAGER_H #define SERVERMANAGER_H #include #include #include class ServerManager : public QObject { Q_OBJECT public: explicit ServerManager(QObject *parent = 0); signals: public slots: bool init(const QHostAddress& addr, const int& port); void sendData(const QList > &values, const qint64& timestamp); private: PTServer* m_server; }; #endif // SERVERMANAGER_H