Skip to content
Snippets Groups Projects
tratador.h 269 B
Newer Older
#ifndef __TRATADOR_H__
#define __TRATADOR_H__
#include "funcionario.h"

class Tratador: public Funcionario {
	private:

	public:
		Tratador(int identity, string role, string name, string doc_cpf, short age, char blood_type, char rh_factor, string specialty);
};

#endif