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.
 
 
 
 

38 lines
841 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, const std::string &file);
void parse(icalcomponent* event, const std::string &file);
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 update_row_string() const;
std::string print() const;
private:
std::string uid;
std::string summary;
uint32_t dtstart;
uint32_t dtend;
std::vector<Alarm> alarms;
std::string filename;
};
}