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

12345678910111213141516171819202122232425
  1. #ifndef BCTEST_H
  2. #define BCTEST_H
  3. #include <QDebug>
  4. #include "broadcast.h"
  5. class BcTest : public QObject
  6. {
  7. Q_OBJECT
  8. public:
  9. BcTest();
  10. public slots:
  11. void test();
  12. private slots:
  13. void newServer(QHostAddress ad);
  14. private:
  15. Broadcast* m_bc;
  16. Broadcast* m_serv;
  17. };
  18. #endif