您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

inputbusiness.h 477B

1234567891011121314151617181920212223242526
  1. #ifndef INPUTBUSINESS_H
  2. #define INPUTBUSINESS_H
  3. #include <QObject>
  4. #include "inputmanager.h"
  5. #include "servermanager.h"
  6. class InputBusiness : public QObject
  7. {
  8. Q_OBJECT
  9. public:
  10. InputBusiness(InputManager* input, const QList<QVariant>& channels, ServerManager* server);
  11. virtual ~InputBusiness();
  12. public slots:
  13. void readAndSend();
  14. private:
  15. InputManager* m_input;
  16. QList<QVariant> m_channels;
  17. ServerManager* m_server;
  18. };
  19. #endif // INPUTBUSINESS_H