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.

10 lines
190 B

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