-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathCabaz.h
67 lines (41 loc) · 1.18 KB
/
Cabaz.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
#ifndef FICHAJUNG_CABAZ_H
#define FICHAJUNG_CABAZ_H
#include <string>
#include <vector>
#include <iostream>
#include <sstream>
using namespace std;
class Cabaz {
double peso;
double volume;
string nomeDest;
string morada;
int id;
string itens;
public:
Cabaz(double peso, double volume,string nomeDest,string morada, int numFatura);
Cabaz();
double getPeso() ;
void setPeso(double peso);
string getItens() ;
void setItens( string itens);
int getId() ;
double getVolume() ;
void setVolume(double volume);
string getNomeDest() ;
void setId(int id);
void setNomeDest(string nomeDest);
string getMorada() ;
void setMorada( string morada);
};
class NonExistentCabaz{
string id;
public:
NonExistentCabaz(string idC){ id=idC; }
// Operador << para mensagem de erro que apanha o objeto lançado pela exceção.
friend ostream & operator<<(ostream &out, const NonExistentCabaz &nonExistentCabaz){
out << "Basket non existent! id: " << nonExistentCabaz.id << endl;
return out;
}
};
#endif //FICHAJUNG_CABAZ_H