-
Notifications
You must be signed in to change notification settings - Fork 0
/
voiture.h
96 lines (88 loc) · 1.57 KB
/
voiture.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
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
#ifndef VOITURE_H
#define VOITURE_H
#include<QString>
#include<QSqlQuery>
#include<QSqlQueryModel>
#include <QSqlTableModel>
#include <QSortFilterProxyModel>
#include <QSqlRelationalTableModel>
#include<QMessageBox>
class voiture
{
QString marque , modele,type,options,couleur;
int prix,prix_option,reference;
public:
voiture();
voiture(QString,int,QString,int,QString,int,QString,QString);
void setCouleur(QString c)
{
couleur=c;
}
QString getCouleur()
{
return couleur;
}
void setReference(int r)
{
reference=r;
}
int getReference()
{
return reference;
}
void setMarque(QString m)
{
marque=m;
}
void setModele(QString mo)
{
modele=mo;
}
void setType_carburant(QString t)
{
type=t;
}
void setOption(QString o)
{
options=o;
}
void setPrix_option(int Po)
{
prix_option=Po;
}
void setPrix(int P)
{
prix=P;
}
QString getMarque()
{
return marque;
}
QString getModele()
{
return modele;
}
QString getType_carburant()
{
return type;
}
QString getOption()
{
return options;
}
int getPrix()
{
return prix;
}
int getPrix_option()
{
return prix_option;
}
bool ajouter();
QSqlQueryModel * afficher();
bool supprimer(int);
bool modifier();
QSqlQueryModel *recherche(QString REFERENCE,QString modele,QString marque);
QSqlQueryModel * load();
};
#endif // VOITURE_H