FeedParse.h 425 B

123456789101112131415161718192021222324
  1. #ifndef NULLSOFT_FEEDPARSEH
  2. #define NULLSOFT_FEEDPARSEH
  3. #include "DownloadThread.h"
  4. #include "ChannelSync.h"
  5. class FeedParse : public DownloadThread
  6. {
  7. public:
  8. FeedParse(ChannelSync *_sync, bool doWinampSpecificTags = false)
  9. : sync(_sync), loadingOwnFeed(doWinampSpecificTags)
  10. {}
  11. ~FeedParse()
  12. {
  13. sync = 0;
  14. }
  15. virtual void ReadNodes(const wchar_t *url);
  16. private:
  17. ChannelSync *sync;
  18. bool loadingOwnFeed;
  19. };
  20. #endif