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.

9 lines
252 B

  1. #pragma once
  2. #include <db/db.h>
  3. #include <ical/IcalObject.h>
  4. namespace db {
  5. uint32_t insert_events(sql::Database *db, const ical::IcalObject *object);
  6. uint32_t insert_alarm(sql::Database *db, const ical::Alarm *alarm, const uint32_t event_id);
  7. }