forked from Caramelo18/AEDA-Project-1
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCliente.cpp
More file actions
58 lines (47 loc) · 812 Bytes
/
Cliente.cpp
File metadata and controls
58 lines (47 loc) · 812 Bytes
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
/*
* Cliente.cpp
*/
#include "Cliente.h"
#include <iostream>
#include <string>
using namespace std;
Cliente::Cliente(string Nome,unsigned long Nif)
{
this->Nome=Nome;
this->Nif=Nif;
}
string Cliente::getNome()const
{
return Nome;
}
unsigned long Cliente::getNif()const
{
return Nif;
}
bool Cliente::operator <(const Cliente &Cli)const
{
if (Nome < Cli.getNome())
return true;
if(Nome == Cli.getNome())
{
if(Nif<Cli.getNif())
return true;
else
return false;
}
else return false;
}
bool Cliente::operator ==(const Cliente &c)const
{
if (Nome == c.getNome() && Nif == c.getNif())
return true;
return false;
}
void Cliente::setNome(string nome)
{
Nome = nome;
}
void Cliente::setNif(unsigned long nif)
{
Nif = nif;
}