mirror of
https://github.com/WinampDesktop/winamp.git
synced 2024-09-24 15:54:12 +00:00
24 lines
425 B
C
24 lines
425 B
C
|
#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
|