My Class PlaylistTrack is a subclass of Track (extends that class):
#include "track.h"
#include "album.h"
class PlaylistTrack : public Track //extends Track Class
{
private:
Album & newAlbum; //or
Album * newAlbum; //?
public:
PlaylistTrack(void);
~PlaylistTrack(void);
};
I'm hoping i have the correct syntax. How do you go about adding a reference or pointer to the Album on which a certain track occurs?
Trackmeans "tracks not on a playlist", though I join you in questioning the use of inheritance here. – Lightness Races in Orbit Dec 11 '12 at 17:53