class CD_Player {
CD_Player(int x, int y, Color
c); // constructor
void playTrack(int trackNumber);
// starts playing a single track
void stopPlay();
// stop playing the CD
void paint(Graphics g);
// Draw the status bar on the screen
int getTrackNum();
// Returns the number of the current track
}