UsTK : Ultrasound ToolKit  version 2.0.1 under development (2024-05-17)
usServerMainWindow.h
1 #ifndef US_SERVER_MAIN_WINDOW_H
2 #define US_SERVER_MAIN_WINDOW_H
3 
4 #include <QMainWindow>
5 #include <QPushButton>
6 #include <QtWidgets/QApplication>
7 
8 class usServerMainWindow : public QMainWindow
9 {
10  Q_OBJECT
11 
12 public:
13  usServerMainWindow(QObject *parent = 0);
15 
16 public slots:
17  void startStopSlot();
18 
19 signals:
20  void startServer();
21  void stopServer();
22 
23 private:
24  QPushButton * m_startStopButton;
25  bool m_isStarted;
26 };
27 
28 #endif // US_SERVER_MAIN_WINDOW_H
usServerMainWindow(QObject *parent=0)