-
Notifications
You must be signed in to change notification settings - Fork 0
/
produto.h
52 lines (44 loc) · 1.18 KB
/
produto.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
#ifndef PRODUTO_H
#define PRODUTO_H
class Produto{
protected:
int idProduto;
int quantidade;
//Quantidade moletom
int qt_moletom_P = 10;
int qt_moletom_M = 10;
int qt_moletom_G = 10;
//Quantidade moletom
int qt_camisa_P = 10;
int qt_camisa_M = 10;
int qt_camisa_G = 10;
//Quantidade caneca
int qt_caneca = 10;
//Quantidade tirante
int qt_tirante = 10;
char tamanhoProduto;
double precoMoletom = 10;
double precoCamisa = 10;
double precoCaneca = 10;
double precoTirante = 10;
public:
int getIdProduto();
int getQuantidade();
int getQtMoletomP();
int getQtMoletomM();
int getQtMoletomG();
int getQtCamisaP();
int getQtCamisaM();
int getQtCamisaG();
int getQtCaneca();
int getQtTirante();
char getTamanhoProduto();
double getPrecoMoletom();
double getPrecoCamisa();
double getPrecoCaneca();
double getPrecoTirante();
void cadastraProduto();
void removerProduto();
void listaProduto();
};
#endif