wumu
2023-05-09 f56189cb39e27967128abe39abdb200c052d88f7
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
#ifndef CLIENTMAINWINDOW_H
#define CLIENTMAINWINDOW_H
 
#include <QMainWindow>
 
namespace Ui {
class ClientMainWindow;
}
 
class ClientMainWindow : public QMainWindow
{
    Q_OBJECT
 
public:
    explicit ClientMainWindow(QWidget *parent = 0);
    ~ClientMainWindow();
 
private:
    Ui::ClientMainWindow *ui;
};
 
#endif // CLIENTMAINWINDOW_H