We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 8e0aa14 commit 9bf6d47Copy full SHA for 9bf6d47
2 files changed
samples/today/TodayMock.cpp
@@ -186,6 +186,11 @@ std::optional<std::string> Appointment::getForceError() const
186
throw std::runtime_error(R"ex(this error was forced)ex");
187
}
188
189
+std::vector<response::IdType> Appointment::getArray() const
190
+{
191
+ return {};
192
+}
193
+
194
AppointmentEdge::AppointmentEdge(std::shared_ptr<Appointment> appointment)
195
: _appointment(std::move(appointment))
196
{
samples/today/TodayMock.h
@@ -146,6 +146,7 @@ class Appointment
146
std::shared_ptr<const response::Value> getSubject() const noexcept;
147
bool getIsNow() const noexcept;
148
std::optional<std::string> getForceError() const;
149
+ std::vector<response::IdType> getArray() const;
150
151
private:
152
response::IdType _id;
0 commit comments