Skip to content
Snippets Groups Projects
animalexotico.h 311 B
Newer Older
#ifndef __ANIMALEXOTICO_H__
#define __ANIMALEXOTICO_H__
#include "animalsilvestre.h"

class AnimalExotico: public AnimalSilvestre{
	private:
		string pais_origem;

	public:
		string getPais_origem();
		void setPais_origem(string origin_country);
		AnimalExotico(string biernr, string origin_country);
};

#endif