Skip to content
Snippets Groups Projects
reptil.h 487 B
Newer Older
#ifndef __REPTIL_H__
#define __REPTIL_H__
#include "animal.h"

class Reptil: public Animal{
	private:
		bool venenoso;
		string tipo_veneno;

	public:
		bool getVenenoso();
		void setVenenoso(bool isPoisonous);
		string getTipo_veneno();
		void setTipo_venono(string poison_type);
		Reptil(int identity, string clas, string name, string scientific, char sex, float size, string diet, string baptism, Veterinario vet, Tratador caretaker, bool isPoisonous, string poison_type);

};

#endif