Lines Matching refs:std
31 auto bundleName_tokeId = "?bundleName=" + bumdleName + "&tokenId=" + std::to_string(tokenId);
32 m_calendarUri = std::make_unique<Uri>(calendarUrl + bundleName_tokeId);
58 std::shared_ptr<Calendar> CalendarManager::CreateCalendar(const CalendarAccount& account)
67 return std::make_shared<Calendar>(account, index);
81 std::shared_ptr<Calendar> CalendarManager::GetCalendar(const std::optional<CalendarAccount>& account)
90 std::vector<std::string> columns = {"_id", "account_name", "account_type", "calendar_displayName"};
100 return std::make_shared<Calendar>(-1);
103 return std::move(calendarSet.at(0));
106 std::vector<std::shared_ptr<Calendar>> CalendarManager::GetAllCalendars()
108 std::vector<std::shared_ptr<Calendar>> results;
110 std::vector<std::string> columns = {"_id", "account_name", "account_type", "calendar_displayName"};