-
Notifications
You must be signed in to change notification settings - Fork 0
/
chaine.h
53 lines (45 loc) · 823 Bytes
/
chaine.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
#ifndef CHAINE_H
#define CHAINE_H
#include<QString>
#include<QSqlQuery>
#include<QSqlQueryModel>
class chaine
{
QString type_produit;
int reference,nb_machine;
public:
chaine();
chaine(int,int,QString);
void setnb_machine(int nb)
{
nb_machine=nb;
}
int getnb_machine()
{
return nb_machine;
}
void setType_produit(QString t)
{
type_produit=t;
}
QString getType_produit()
{
return type_produit;
}
void setRef(int r)
{
reference=r;
}
int getRef()
{
return reference;
}
bool ajouter();
QSqlQueryModel * afficher();
bool supprimer(int);
bool modifier();
// bool imprimer();
QSqlQueryModel * load_ch();
QSqlQueryModel * trier(int test);
};
#endif // CHAINE_H