Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

229bb983d763c7f7c6c721686b26eebf #200

Open
wants to merge 1 commit into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 2 additions & 3 deletions Cliente.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,10 @@ class Cliente{

string NOME;
string endereco;
string Cep;
string AlturaDosPais;
string Cep;

void print(); // imprime na tela os dados de um cliente cadastrado

};

#endif
#endif
2 changes: 0 additions & 2 deletions Especialista.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -12,8 +12,6 @@ double percWanda = 0.1;

class Especialista : public Funcionario {

public:

public:
string especialidade;

Expand Down
2 changes: 1 addition & 1 deletion Funcionario.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ using namespace std;

class Funcionario {
public:
double SalarioBase; // valor m�nimo recebido pelo funcion�rio
double SalarioBase; // valor minimo recebido pelo funcionario
string IDADE;
string nome;
int rgFunc;
Expand Down
6 changes: 1 addition & 5 deletions Gerente.hpp
Original file line number Diff line number Diff line change
Expand Up @@ -8,12 +8,8 @@ using namespace std;

double ValorBONIFICACAO = 15.0;

class Gerente {
class Gerente : public Funcionario {
public:
double SalarioBase; // valor m�nimo recebido pelo funcion�rio
string IDADE;
string nome;
int rgFunc;
double bonificacao;


Expand Down
5 changes: 0 additions & 5 deletions main.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -135,11 +135,6 @@ int main()
numAtendimentos03+=1;


v06.descricao = "Decoracao de Apartamento no Brooklyn";
v06.VALOR = 3000;



Venda v07;
v07.cliente= "J. Jonah Jameson";
v07.esp = e03;
Expand Down