mirror of
https://github.com/WinampDesktop/winamp.git
synced 2025-06-17 19:15:45 -04:00
Initial community commit
This commit is contained in:
28
Src/Plugins/Library/ml_wire/OPMLParse.h
Normal file
28
Src/Plugins/Library/ml_wire/OPMLParse.h
Normal file
@ -0,0 +1,28 @@
|
||||
#ifndef NULLSOFT_OPMLPARSEH
|
||||
#define NULLSOFT_OPMLPARSEH
|
||||
|
||||
#include "DownloadThread.h"
|
||||
#include "ChannelSync.h"
|
||||
class OPMLParse : public DownloadThread
|
||||
{
|
||||
public:
|
||||
OPMLParse(ChannelSync *_sync)
|
||||
: sync(_sync)
|
||||
{
|
||||
|
||||
}
|
||||
|
||||
|
||||
~OPMLParse()
|
||||
{
|
||||
sync = 0;
|
||||
}
|
||||
|
||||
virtual void ReadNodes(const wchar_t *url);
|
||||
|
||||
private:
|
||||
|
||||
ChannelSync *sync;
|
||||
};
|
||||
|
||||
#endif
|
Reference in New Issue
Block a user