controller.h 300 B

1234567891011121314151617181920212223
  1. #ifndef CONTROLLER_H
  2. #define CONTROLLER_H
  3. #include <QObject>
  4. class QLocalServer;
  5. class Controller : public QObject
  6. {
  7. Q_OBJECT
  8. QLocalServer *server;
  9. public:
  10. explicit Controller(QObject *parent = 0);
  11. signals:
  12. public slots:
  13. private slots:
  14. void sockCon();
  15. };
  16. #endif // CONTROLLER_H