mirror of
https://github.com/binary-kitchen/doorlockd
synced 2024-11-07 17:13:51 +01:00
30 lines
463 B
C++
30 lines
463 B
C++
#ifndef MAINWINDOW_H
|
|
#define MAINWINDOW_H
|
|
|
|
#include <QWidget>
|
|
#include "../lib/clientmessage.h"
|
|
|
|
namespace Ui {
|
|
class MainWindow;
|
|
}
|
|
|
|
class MainWindow : public QWidget
|
|
{
|
|
Q_OBJECT
|
|
|
|
public:
|
|
explicit MainWindow(QWidget *parent = 0);
|
|
|
|
MainWindow(const MainWindow &rhs);
|
|
MainWindow &operator =(const MainWindow &rhs);
|
|
|
|
~MainWindow();
|
|
|
|
void setClientmessage(const Clientmessage &msg);
|
|
|
|
private:
|
|
Ui::MainWindow *ui;
|
|
};
|
|
|
|
#endif // MAINWINDOW_H
|