Pogger/src/Config.h

23 lines
291 B
C
Raw Normal View History

2020-07-03 19:13:41 -05:00
#ifndef CONFIG_H
#define CONFIG_H
2020-07-07 17:42:12 -05:00
#include <DateTime.h>
#include <String.h>
2020-07-03 19:13:41 -05:00
#include <StorageKit.h>
class Config {
public:
bool verbose;
bool daemon;
BString mimetype;
BString outDir;
2020-07-04 12:53:08 -05:00
BList targetFeeds; // file or url
2020-07-03 19:13:41 -05:00
2020-07-07 17:42:12 -05:00
BDateTime minDate;
BDateTime maxDate;
2020-07-03 19:13:41 -05:00
Config ( );
};
#endif