Cpp/Exámenes Resueltos (Segundo Semestre)/Junio2016_1/Tema.h

24 lines
330 B
C
Raw Normal View History

2019-06-20 13:06:16 +02:00
#ifndef _TEMA
#define _TEMA
#include <iostream>
#include <string>
#include <fstream>
#include <iomanip>
//Constantes:
//Tipos:
typedef struct tTema {
std::string titulo, interprete;
int segundos;
};
//Funciones:
bool cargar(tTema& tema, std::ifstream&);
void mostrar(tTema& tema);
#endif // !_TEMA