1234567891011121314151617181920212223242526 |
- #ifndef INPUTBUSINESS_H
- #define INPUTBUSINESS_H
-
- #include <QObject>
- #include "inputmanager.h"
- #include "servermanager.h"
-
- class InputBusiness : public QObject
- {
- Q_OBJECT
- public:
- InputBusiness(InputManager* input, const QList<QVariant>& channels, ServerManager* server);
- virtual ~InputBusiness();
-
- public slots:
- void readAndSend();
-
- private:
- InputManager* m_input;
-
- QList<QVariant> m_channels;
-
- ServerManager* m_server;
- };
-
- #endif // INPUTBUSINESS_H
|