-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathsecurity.h
More file actions
35 lines (30 loc) · 713 Bytes
/
security.h
File metadata and controls
35 lines (30 loc) · 713 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
#ifndef SECURITY_H
#define SECURITY_H
#include "institute_member.h"
#include "database_handler.h"
#include <QWidget>
namespace Ui {
class Security;
}
class Security : public QWidget,Institute_Member
{
Q_OBJECT
public:
explicit Security(QWidget *parent = 0);
~Security();
void start();
private slots:
void on_addEntry_clicked();
bool checkSplPermi(QString);
void on_idcheck_clicked();
void isVehiclePhy(QString);
void on_saveEntry_clicked();
void checkId(QString Id);
void on_addExitb_clicked();
private:
Ui::Security *ui;
void addPersonEntry(database_handler);
void addPersonExit(database_handler);
bool isVehicle(QString);
};
#endif // SECURITY_H