-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathaccreditation.h
56 lines (40 loc) · 909 Bytes
/
accreditation.h
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
#ifndef ACCREDITATION_H
#define ACCREDITATION_H
#include <QDialog>
#include <opencv2/opencv.hpp>
//#include <opencv4/opencv2/opencv.hpp>
//#include "accred.h"
#include <vector>
#include <string>
#include <cstring>
#include <fstream>
#include <iostream>
namespace Ui {
class Accreditation;
}
class Accreditation : public QDialog
{
Q_OBJECT
public:
explicit Accreditation(QWidget *parent = nullptr);
~Accreditation();
void SetAdr(QString adresse);
void AffImage();
//Initialisation Images COULEURS
void SetImg(QImage image);
void SetImgMat(cv::Mat MatIm);
// Getter
int GetCode();
// Setter
void SetCode(int numero_acces);
int num;
int numero_acces;
private slots:
void on_Annuler_Accred_clicked();
void on_Valider_Accred_clicked();
private:
Ui::Accreditation *ui;
QString adr;
QImage img;
};
#endif // ACCREDITATION_H