Pogger/src/Channel.h

31 lines
433 B
C
Raw Normal View History

2020-06-19 17:03:19 -05:00
#ifndef CHANNEL_H
#define CHANNEL_H
2020-06-18 02:02:44 -05:00
#include <DateTime.h>
#include <String.h>
#include <List.h>
#include <Url.h>
class Channel {
public:
char lang[3];
BString title;
BString description;
BDate lastBuildDate;
BString homePage;
BString xmlUrl;
BList items;
BString topLevelSubject;
BString lastSubject;
BString filePath;
2020-06-19 17:03:19 -05:00
Channel ( BString );
2020-06-18 02:02:44 -05:00
// Channel ( BEntry );
// Channel ( BUrl );
void Parse ( void );
};
2020-06-19 17:03:19 -05:00
#endif