-
Notifications
You must be signed in to change notification settings - Fork 20
/
pedido.hpp
46 lines (36 loc) · 1.11 KB
/
pedido.hpp
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
#ifndef PEDIDO_HPP
#define PEDIDO_HPP
#include "produto.hpp"
#include <list>
#include <string>
#include <iostream>
using namespace std;
class Pedido{
public:
Pedido(string endereco): _endereco(endereco){}
void adiciona_produto(produto *p){
_produtos.push_back(p);
}
float calcula_total(){
float val=0.0;
list<produto*>::iterator it;
for (it = _produtos.begin(); it != _produtos.end(); it++){
val += (*it)->valorUnitario*(*it)->q;
}
return val;
}
void print_resumo(){
list<produto*>::iterator it;
cout << "================================" << endl;
cout << "Pedido - Endereco: " << _endereco << endl;
cout << "Valor total: " << calcula_total() << endl;
for (it = _produtos.begin(); it != _produtos.end(); it++){
(*it)->print();
}
cout << "================================" << endl;
}
private:
list<produto*> _produtos;
string _endereco;
};
#endif