diff options
author | Jean-Francois Mauguit <jfmauguit@mac.com> | 2024-09-24 09:03:25 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-09-24 09:03:25 -0400 |
commit | bab614c421ed7ae329d26bf028c4a3b1d2450f5a (patch) | |
tree | 12f17f78986871dd2cfb0a56e5e93b545c1ae0d0 /Src/Plugins/Library/ml_wire/Feeds.h | |
parent | 4bde6044fddf053f31795b9eaccdd2a5a527d21f (diff) | |
parent | 20d28e80a5c861a9d5f449ea911ab75b4f37ad0d (diff) | |
download | winamp-bab614c421ed7ae329d26bf028c4a3b1d2450f5a.tar.gz |
Merge pull request #5 from WinampDesktop/community
Merge to main
Diffstat (limited to 'Src/Plugins/Library/ml_wire/Feeds.h')
-rw-r--r-- | Src/Plugins/Library/ml_wire/Feeds.h | 50 |
1 files changed, 50 insertions, 0 deletions
diff --git a/Src/Plugins/Library/ml_wire/Feeds.h b/Src/Plugins/Library/ml_wire/Feeds.h new file mode 100644 index 00000000..a8075627 --- /dev/null +++ b/Src/Plugins/Library/ml_wire/Feeds.h @@ -0,0 +1,50 @@ +#ifndef NULLSOFT_FEEDSH +#define NULLSOFT_FEEDSH + +#include "ifc_podcast.h" +#include "Item.h" +#include <vector> + +class Channel : public ifc_podcast +{ +public: + typedef std::vector<RSS::Item> ItemList; + Channel(); + Channel(const Channel ©); + const Channel &operator =(const Channel ©); + ~Channel(); + void SortByTitle(), SortByMedia(), SortByMediaTime(), SortByDate(), SortByMediaSize(); + bool operator == (const Channel &compare); + //void operator = (const Channel ©); + void UpdateFrom(const Channel ©); + + unsigned int ttl; + __time64_t updateTime, lastUpdate; + int autoDownloadEpisodes; + bool autoUpdate; + bool useDefaultUpdate; + bool autoDownload; + bool needsRefresh; + // TODO: std::wstring downloadLocation; + ItemList items; + + void SetURL(const wchar_t *val); + void SetTitle(const wchar_t *val); + void SetLink(const wchar_t *val); + void SetDescription(const wchar_t *val); + + wchar_t *url, *title, *link, *description; + +public: // ifc_podcast interface + int GetTitle(wchar_t *str, size_t len); + +private: + void Init(); + void Reset(); + + +protected: + RECVS_DISPATCH; +}; + +#endif
\ No newline at end of file |