Lines Matching refs:std
28 Calendar(Calendar&& other) : m_account(std::move(other.m_account)), m_id(other.m_id)
38 int AddEvents(const std::vector<Event>& events);
40 int DeleteEvents(const std::vector<int>& id);
43 int UpdateEvents(const std::vector<Event>& events);
46 std::vector<Event> GetEvents(std::shared_ptr<EventFilter> filter, const std::vector<string>& eventKey);
47 std::vector<Attendee> GetAttendeesByEventId(int id);
48 std::optional<std::vector<int>> GetRemindersByEventId(int id);
63 std::unique_ptr<Uri> m_eventUri;
64 std::unique_ptr<Uri> m_attendeeUri;
65 std::unique_ptr<Uri> m_calendarUri;
66 std::unique_ptr<Uri> m_reminderUrl;