Skip to content
Snippets Groups Projects
animalsilvestre.h 278 B
Newer Older
#ifndef __ANIMALSILVESTRE_H__
#define __ANIMALSILVESTRE_H__

#include <iostream>
#include <string>

using namespace std;

class AnimalSilvestre{
	private:
		string ibama;

	public:
		string getIbama();
		void setIbama(string biernr);
		AnimalSilvestre(string biernr);
};

#endif