Lines Matching refs:Calendar
24 class Calendar final {
26 Calendar(int id);
27 Calendar(CalendarAccount account, int id);
28 Calendar(Calendar&& other) : m_account(std::move(other.m_account)), m_id(other.m_id)
31 Calendar(const Calendar& other) : m_account(other.m_account), m_id(other.m_id)
35 Calendar() = delete;
36 ~Calendar() = default;
68 } // namespace OHOS::Calendar