|
@ -12,8 +12,8 @@ namespace ical { |
|
|
class IcalObject { |
|
|
class IcalObject { |
|
|
public: |
|
|
public: |
|
|
void add_event(ical::Event* event); |
|
|
void add_event(ical::Event* event); |
|
|
std::vector<ical::Event*> get_events(); |
|
|
|
|
|
bool empty(); |
|
|
|
|
|
|
|
|
std::vector<ical::Event*> get_events() const; |
|
|
|
|
|
bool empty() const; |
|
|
|
|
|
|
|
|
friend std::ostream& operator<<(std::ostream &os, ical::IcalObject const &obj); |
|
|
friend std::ostream& operator<<(std::ostream &os, ical::IcalObject const &obj); |
|
|
private: |
|
|
private: |
|
|