aboutsummaryrefslogtreecommitdiff
path: root/Src/Plugins/Library/ml_wire/OPMLParse.h
diff options
context:
space:
mode:
Diffstat (limited to 'Src/Plugins/Library/ml_wire/OPMLParse.h')
-rw-r--r--Src/Plugins/Library/ml_wire/OPMLParse.h28
1 files changed, 28 insertions, 0 deletions
diff --git a/Src/Plugins/Library/ml_wire/OPMLParse.h b/Src/Plugins/Library/ml_wire/OPMLParse.h
new file mode 100644
index 00000000..5921ceef
--- /dev/null
+++ b/Src/Plugins/Library/ml_wire/OPMLParse.h
@@ -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 \ No newline at end of file