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.

15 lines
198 B

  1. #pragma once
  2. #include <libical/ical.h>
  3. #include <vector>
  4. #include <io/debug.h>
  5. namespace ical {
  6. class Alarm;
  7. class Event;
  8. struct ical_object {
  9. std::vector<ical::Event*> events;
  10. };
  11. }