-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathMovimentacao.cpp
73 lines (57 loc) · 1.48 KB
/
Movimentacao.cpp
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
/*
* Movimentacao.cpp
*
* Created on: 22 de set de 2019
* Author: rafaelamoreira
*/
#include "Movimentacao.h"
Movimentacao::Movimentacao() // @suppress("Class members should be properly initialized")
{
descricao = "";
debitoCredito = 'n';
valor = 0;
}
Movimentacao::Movimentacao(std::string descricao, char debitoCredito, double valor) {
this->descricao = descricao;
this->debitoCredito = debitoCredito;
this->valor = valor;
this->dataMov = time(0);
}
Movimentacao::Movimentacao(time_t dataMov, std::string descricao, char debitoCredito, double valor) {
this->descricao = descricao;
this->debitoCredito = debitoCredito;
this->valor = valor;
this->dataMov = dataMov;
}
Movimentacao::~Movimentacao() {
// TODO Auto-generated destructor stub
}
//Movimentacao::Movimentacao(const Movimentacao &other) {
// // TODO Auto-generated constructor stub
//
//}
time_t Movimentacao::getDataMov() const {
return dataMov;
}
char Movimentacao::getDebitoCredito() const {
return debitoCredito;
}
const std::string& Movimentacao::getDescricao() const {
return descricao;
}
double Movimentacao::getValor() const {
return valor;
}
std::ostream& operator<<(std::ostream& out, const Movimentacao& obj)
{
out << obj.dataMov << "\n" << obj.descricao << "\n" << obj.debitoCredito << "\n" << obj.valor << std::endl;
return out;
}
std::istream& operator>>(std::istream& in, Movimentacao& obj)
{
in >> obj.dataMov;
in >> obj.descricao;
in >> obj.debitoCredito;
in >> obj.valor;
return in;
}