-
Notifications
You must be signed in to change notification settings - Fork 0
/
Cancion.h
40 lines (29 loc) · 885 Bytes
/
Cancion.h
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
#ifndef CANCION
#define CANCION
#include "GeneroMusical.h"
#include "DatoCurioso.cpp"
#include <iostream>
#include <string>
#include <sstream>
//Herencia
class Cancion:public GeneroMusical{
private:
string nombre, duracion, puntuacion;
DatoCurioso datoCurioso;
public:
Cancion();
// (genero_musical,instrumento_recurrente, nombre,duracion,puntuacion, datocurioso )
Cancion(string,string, string,string,string, string);
// Setters
void setNombre(string);
void setDuracion(string);
void setPuntuacion(string);
// Viene de datoCurioso
void agregaDatoCurioso(DatoCurioso,string);
string getNombre();
string getDuracion();
string getPuntuacion();
// Super string que se va a usar
string getCancionInfo();
};
#endif