-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Limpeza de códigos, melhoria no tratamento de erros, melhoria na impressão de animais, campos necessários
- Loading branch information
Showing
36 changed files
with
777 additions
and
790 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "anfibio_domestico.hpp" | ||
|
||
AnfibioDomestico::AnfibioDomestico(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
AnfibioDomestico::AnfibioDomestico(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, bool adestrado, bool cauda, bool pata): | ||
Domestico(nome, especie, veterinario, tratador, perigoso, adestrado), | ||
Domestico(nome, especie, ameacadoPor, veterinario, tratador, perigoso, adestrado), | ||
Anfibio(cauda, pata){} | ||
|
||
AnfibioDomestico::~AnfibioDomestico(){} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "anfibio_exotico.hpp" | ||
|
||
AnfibioExotico::AnfibioExotico(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
AnfibioExotico::AnfibioExotico(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string local, bool cauda, bool pata): | ||
Exotico(nome, especie, veterinario, tratador, perigoso, local), | ||
Exotico(nome, especie, ameacadoPor, veterinario, tratador, perigoso, local), | ||
Anfibio(cauda, pata){} | ||
|
||
AnfibioExotico::~AnfibioExotico(){} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "anfibio_nativo.hpp" | ||
|
||
AnfibioNativo::AnfibioNativo(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string regiao, bool cauda, bool pata): | ||
Nativo(nome, especie, veterinario, tratador, perigoso, regiao), | ||
AnfibioNativo::AnfibioNativo(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string regiao, string licenca, bool cauda, bool pata): | ||
Nativo(nome, especie, ameacadoPor, veterinario, tratador, perigoso, regiao, licenca), | ||
Anfibio(cauda, pata){} | ||
|
||
AnfibioNativo::~AnfibioNativo(){} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "ave_domestica.hpp" | ||
|
||
AveDomestica::AveDomestica(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
AveDomestica::AveDomestica(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, bool adestrado, bool voa): | ||
Domestico(nome, especie, veterinario, tratador, perigoso, adestrado), | ||
Domestico(nome, especie, ameacadoPor, veterinario, tratador, perigoso, adestrado), | ||
Ave(voa){} | ||
|
||
AveDomestica::~AveDomestica(){} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "ave_exotica.hpp" | ||
|
||
AveExotica::AveExotica(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
AveExotica::AveExotica(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string local, bool voa): | ||
Exotico(nome, especie, veterinario, tratador, perigoso, local), | ||
Exotico(nome, especie, ameacadoPor, veterinario, tratador, perigoso, local), | ||
Ave(voa){} | ||
|
||
AveExotica::~AveExotica(){} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "ave_nativa.hpp" | ||
|
||
AveNativa::AveNativa(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string regiao, bool voa): | ||
Nativo(nome, especie, veterinario, tratador, perigoso, regiao), | ||
AveNativa::AveNativa(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string regiao, string licenca, bool voa): | ||
Nativo(nome, especie, ameacadoPor, veterinario, tratador, perigoso, regiao, licenca), | ||
Ave(voa){} | ||
|
||
AveNativa::~AveNativa(){} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "mamifero_domestico.hpp" | ||
|
||
MamiferoDomestico::MamiferoDomestico(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
MamiferoDomestico::MamiferoDomestico(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, bool adestrado, bool gestacao): | ||
Domestico(nome, especie, veterinario, tratador, perigoso, adestrado), | ||
Domestico(nome, especie, ameacadoPor, veterinario, tratador, perigoso, adestrado), | ||
Mamifero(gestacao){} | ||
|
||
MamiferoDomestico::~MamiferoDomestico(){} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "mamifero_exotico.hpp" | ||
|
||
MamiferoExotico::MamiferoExotico(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
MamiferoExotico::MamiferoExotico(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string local, bool gestacao): | ||
Exotico(nome, especie, veterinario, tratador, perigoso, local), | ||
Exotico(nome, especie, ameacadoPor, veterinario, tratador, perigoso, local), | ||
Mamifero(gestacao){} | ||
|
||
MamiferoExotico::~MamiferoExotico(){} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,8 @@ | ||
#include "mamifero_nativo.hpp" | ||
|
||
MamiferoNativo::MamiferoNativo(string nome, string especie, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string regiao, bool gestacao): | ||
Nativo(nome, especie, veterinario, tratador, perigoso, regiao), | ||
MamiferoNativo::MamiferoNativo(string nome, string especie, string ameacadoPor, Veterinario veterinario, Tratador tratador, | ||
bool perigoso, string regiao, string licenca, bool gestacao): | ||
Nativo(nome, especie, ameacadoPor, veterinario, tratador, perigoso, regiao, licenca), | ||
Mamifero(gestacao){} | ||
|
||
MamiferoNativo::~MamiferoNativo(){} |
Oops, something went wrong.