Advertisement
Guest User

QtGuiApplication1.h

a guest
Aug 1st, 2019
42
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
C++ 0.46 KB | None | 0 0
  1. #pragma once
  2.  
  3. #include <QtWidgets/QMainWindow>
  4. #include "ui_QtGuiApplication1.h"
  5. #include "SerialPortSettings.h"
  6.  
  7. class QtGuiApplication1 : public QMainWindow, private Ui::QtGuiApplication1Class
  8. {
  9.     Q_OBJECT
  10.  
  11. public:
  12.     QtGuiApplication1(QWidget *parent = 0, Qt::WindowFlags flags = 0);
  13.     ~QtGuiApplication1();
  14.  
  15. public slots:
  16.   void ShowSerialPorts();
  17.  
  18. protected:
  19.   void initConnections();
  20.  
  21. private:
  22.   SerialPortSettings m_SerialPortsSettings;
  23. };
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement