#ifndef _CONTACTO #define _CONTACTO #include #include #include #include //Constantes: //Tipos: typedef struct tContacto { std::string id, nombre, email, tlf; }; //Funciones: bool cargar(tContacto& contacto, std::ifstream& archivo); void mostrar(tContacto& contacto); #endif // ! _CONTACTO