1
0
mirror of https://github.com/binary-kitchen/doorlockd synced 2024-09-30 17:52:23 +02:00
doorlockd-mirror/doorlockd/client/mainwindow.h

25 lines
330 B
C
Raw Normal View History

#ifndef MAINWINDOW_H
#define MAINWINDOW_H
2015-09-30 15:26:28 +02:00
#include <QWidget>
2015-09-30 15:26:28 +02:00
namespace Ui {
class MainWindow;
}
2015-09-30 15:26:28 +02:00
class MainWindow : public QWidget
{
2015-09-30 15:26:28 +02:00
Q_OBJECT
2015-09-29 02:13:48 +02:00
2015-09-30 15:26:28 +02:00
public:
explicit MainWindow(QWidget *parent = 0);
~MainWindow();
2015-09-30 15:26:28 +02:00
void setQRCode(const std::string &token);
private:
2015-09-30 15:26:28 +02:00
Ui::MainWindow *ui;
};
2015-09-30 15:26:28 +02:00
#endif // MAINWINDOW_H