mainwindow.h 442 B

1234567891011121314151617181920212223242526272829
  1. #ifndef MAINWINDOW_H
  2. #define MAINWINDOW_H
  3. #include <QMainWindow>
  4. #include <QtSerialPort/QtSerialPort>
  5. namespace Ui {
  6. class MainWindow;
  7. }
  8. class MainWindow : public QMainWindow
  9. {
  10. Q_OBJECT
  11. public:
  12. explicit MainWindow(QWidget *parent = 0);
  13. ~MainWindow();
  14. private:
  15. Ui::MainWindow *ui;
  16. QSerialPort *serial;
  17. void OpenSerial();
  18. void CloseSerial();
  19. private slots:
  20. void on_ReadSerial();
  21. };
  22. #endif // MAINWINDOW_H