Hello everyone!
I am new to C++, and still haven't got to grips with objects, inheritance etc. etc. Anyway, here's the question -
class mainFrame : public Gtk::Window
{
private:
library *m_library;
player *m_player;
}
How can member m_player, when finished playing a track, access m_library to select the next track in the album?
Thank you!