Skip to content

Instantly share code, notes, and snippets.

@Kevin-Gomez10
Created June 16, 2021 01:33
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Kevin-Gomez10/92d9dfe90505fdf10e27c0ee4ff7360a to your computer and use it in GitHub Desktop.
Save Kevin-Gomez10/92d9dfe90505fdf10e27c0ee4ff7360a to your computer and use it in GitHub Desktop.
POO Act13 clase Animal perro
#ifndef animal_h
#define animal_h
class Animal{
public:
string nombre;
string raza;
string NresponsableP;
void cargar_datos();
void Comer();
};//Fin Clase Animal
class Perro: public Animal{
public:
void Ladra();
void Vacunar();
void VerDatos();
};
#endif
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment