Started on window for managing the server.
This commit is contained in:
parent
f51105bde0
commit
2f95c2f096
17 changed files with 163 additions and 8 deletions
24
src/ServerWindow.h
Normal file
24
src/ServerWindow.h
Normal file
|
|
@ -0,0 +1,24 @@
|
|||
#ifndef SERVERWINDOW_H
|
||||
#define SERVERWINDOW_H
|
||||
|
||||
#include <QMainWindow>
|
||||
|
||||
namespace Ui {
|
||||
class ServerWindow;
|
||||
}
|
||||
|
||||
class MasterController;
|
||||
|
||||
class ServerWindow : public QMainWindow
|
||||
{
|
||||
Q_OBJECT
|
||||
|
||||
public:
|
||||
explicit ServerWindow(MasterController *master, QWidget *parent = 0);
|
||||
~ServerWindow();
|
||||
|
||||
private:
|
||||
Ui::ServerWindow *ui;
|
||||
};
|
||||
|
||||
#endif // SERVERWINDOW_H
|
||||
Loading…
Add table
Add a link
Reference in a new issue