aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Library/ml_wire/OPMLParse.h
blob: 5921ceef47073b17576376cc8f8cd68f476b7bf7 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
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