You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
721 B
35 lines
721 B
#pragma once
|
|
|
|
#include <string>
|
|
#include <vector>
|
|
#include <memory>
|
|
|
|
#include <libical/ical.h>
|
|
#include <io/debug.h>
|
|
#include <ical/Alarm.h>
|
|
|
|
namespace ical {
|
|
class Event {
|
|
public:
|
|
Event(icalcomponent* event_component);
|
|
|
|
void parse(icalcomponent* event);
|
|
void parse_alarms(icalcomponent* event_component);
|
|
|
|
std::string get_uid() const;
|
|
std::string get_summary() const;
|
|
uint32_t get_dtstart() const;
|
|
uint32_t get_dtend() const;
|
|
std::vector<Alarm> get_alarms() const;
|
|
|
|
std::vector<std::string> get_db_row() const;
|
|
|
|
std::string print() const;
|
|
private:
|
|
std::string uid;
|
|
std::string summary;
|
|
uint32_t dtstart;
|
|
uint32_t dtend;
|
|
std::vector<Alarm> alarms;
|
|
};
|
|
}
|