Skip to content
Snippets Groups Projects
anfibionativo.h 619 B
Newer Older
#ifndef __ANFIBIONATIVO_H__
#define __ANFIBIONATIVO_H__

#include "anfibio.h"
#include "animalsilvestre.h"
#include "animalnativo.h"

class AnfibioNativo: public Anfibio, AnimalSilvestre, AnimalNativo {
	private:

	public:
		friend std::ostream& operator<< (std::ostream &output, AnfibioNativo const anfnat);
		AnfibioNativo(int identity, string clas, string name, string scientific, char sex, float size,
    				string diet, string baptism, Veterinario vet, Tratador caretaker,
    				int total_changes, string last_change, string biernr, string origin_state, string authorization);
    AnfibioNativo();

};

#endif