2020-07-08 03:20:03 -05:00
|
|
|
#ifndef ENTRY_H
|
|
|
|
#define ENTRY_H
|
2020-06-19 17:54:41 -05:00
|
|
|
|
|
|
|
#include <DateTime.h>
|
|
|
|
#include <String.h>
|
|
|
|
#include <List.h>
|
|
|
|
#include <Url.h>
|
2020-07-08 03:20:03 -05:00
|
|
|
#include "Config.h"
|
2020-06-19 17:54:41 -05:00
|
|
|
|
2020-07-08 03:20:03 -05:00
|
|
|
class Entry {
|
2020-06-19 17:54:41 -05:00
|
|
|
public:
|
|
|
|
BString title;
|
|
|
|
BString description;
|
2020-08-19 12:18:12 -05:00
|
|
|
BString feedTitle;
|
2020-07-08 03:20:03 -05:00
|
|
|
BDateTime date;
|
2020-06-19 17:54:41 -05:00
|
|
|
BString postUrl;
|
2020-07-04 04:44:54 -05:00
|
|
|
BString content;
|
2020-07-08 03:20:03 -05:00
|
|
|
BString outputDir;
|
2020-06-19 17:54:41 -05:00
|
|
|
|
2020-07-08 03:20:03 -05:00
|
|
|
Entry ( BString );
|
2020-06-19 17:54:41 -05:00
|
|
|
|
2020-11-16 20:32:58 -06:00
|
|
|
bool Filetize ( bool );
|
2020-06-20 21:15:34 -05:00
|
|
|
|
2020-07-06 04:39:30 -05:00
|
|
|
bool SetTitle ( const char* );
|
|
|
|
bool SetTitle ( tinyxml2::XMLElement* );
|
|
|
|
bool SetDesc ( const char* );
|
|
|
|
bool SetDesc ( tinyxml2::XMLElement* );
|
2020-08-19 12:18:12 -05:00
|
|
|
bool SetFeedTitle ( BString );
|
2020-07-06 04:39:30 -05:00
|
|
|
bool SetContent ( const char* );
|
|
|
|
bool SetContent ( tinyxml2::XMLElement* );
|
|
|
|
bool SetPostUrl ( const char* );
|
|
|
|
bool SetPostUrl ( tinyxml2::XMLElement* );
|
2020-07-08 03:20:03 -05:00
|
|
|
bool SetDate ( const char* );
|
|
|
|
bool SetDate ( tinyxml2::XMLElement* );
|
2020-06-19 17:54:41 -05:00
|
|
|
};
|
|
|
|
|
|
|
|
#endif
|