File tree Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Expand file tree Collapse file tree 2 files changed +6
-0
lines changed Original file line number Diff line number Diff line change @@ -186,6 +186,11 @@ std::optional<std::string> Appointment::getForceError() const
186186 throw std::runtime_error (R"ex( this error was forced)ex" );
187187}
188188
189+ std::vector<response::IdType> Appointment::getArray () const
190+ {
191+ return {};
192+ }
193+
189194AppointmentEdge::AppointmentEdge (std::shared_ptr<Appointment> appointment)
190195 : _appointment(std::move(appointment))
191196{
Original file line number Diff line number Diff line change @@ -146,6 +146,7 @@ class Appointment
146146 std::shared_ptr<const response::Value> getSubject () const noexcept ;
147147 bool getIsNow () const noexcept ;
148148 std::optional<std::string> getForceError () const ;
149+ std::vector<response::IdType> getArray () const ;
149150
150151private:
151152 response::IdType _id;
You can’t perform that action at this time.
0 commit comments