#ifndef PREENCHE_H #define PREENCHE_H #include #include class Preenche { public: Preenche(); ~Preenche(); int Numero(); String Nome(); int Idade(); String Diagnostico(); String Tratamento(); protected: Randomico *randomico; String diagnostico[10]; String tratamento[10]; String nome[30]; String sobrenome[30]; }; #endif