XSPFLoader.h 477 B

12345678910111213141516
  1. #ifndef NULLSOFT_XSPF_XSPFLOADER_H
  2. #define NULLSOFT_XSPF_XSPFLOADER_H
  3. #include "../playlist/ifc_playlistloader.h"
  4. // this is the class that actually loads the playlist.
  5. // everything up to this point (component, handler, handler factory) was just administrative
  6. class XSPFLoader : public ifc_playlistloader
  7. {
  8. public:
  9. int Load(const wchar_t *filename, ifc_playlistloadercallback *playlist);
  10. protected:
  11. RECVS_DISPATCH; // boiler-plate code for our dispatch table
  12. };
  13. #endif