winamp/Src/Plugins/Library/ml_wire/FeedParse.h

24 lines
425 B
C
Raw Normal View History

2024-09-24 12:54:57 +00:00
#ifndef NULLSOFT_FEEDPARSEH
#define NULLSOFT_FEEDPARSEH
#include "DownloadThread.h"
#include "ChannelSync.h"
class FeedParse : public DownloadThread
{
public:
FeedParse(ChannelSync *_sync, bool doWinampSpecificTags = false)
: sync(_sync), loadingOwnFeed(doWinampSpecificTags)
{}
~FeedParse()
{
sync = 0;
}
virtual void ReadNodes(const wchar_t *url);
private:
ChannelSync *sync;
bool loadingOwnFeed;
};
#endif