#ifndef _TEMA #define _TEMA #include #include #include #include //Constantes: //Tipos: typedef struct tTema { std::string titulo, interprete; int segundos; }; //Funciones: bool cargar(tTema& tema, std::ifstream&); void mostrar(tTema& tema); #endif // !_TEMA