#ifndef _MP3BLASTER_HISTORY_H #define _MP3BLASTER_HISTORY_H #ifdef HAVE_CONFIG_H #include #endif #include class History { public: History(); ~History(); short add(const char*); short atEnd(); short atStart(); void previous(); void next(); const char *element(); private: std::vector v; unsigned int curpos; std::vector::iterator it; }; #endif /* _MP3BLASTER_HISTORY_H */