Codey
 
Loading...
Searching...
No Matches
authwindow.h
Go to the documentation of this file.
1#ifndef AUTHWINDOW_H
2#define AUTHWINDOW_H
3
4#include <QDialog>
5#include "dataAccessLayer/database.h"
6
7namespace Ui {
8class authWindow;
9}
10
11class authWindow : public QDialog
12{
13 Q_OBJECT
14
15public:
16 explicit authWindow(QWidget *parent = nullptr);
18
19private slots:
20 void on_pushButton_clicked();
21
22private:
23 Ui::authWindow *ui;
24 Database *db;
25
26 bool isDarkTheme = false;
27};
28
29#endif
Definition authwindow.h:12
authWindow(QWidget *parent=nullptr)
Definition authwindow.cpp:8
~authWindow()
Definition authwindow.cpp:16
Definition authwindow.h:7