File tree Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Expand file tree Collapse file tree 2 files changed +12
-3
lines changed Original file line number Diff line number Diff line change @@ -647,9 +647,9 @@ tCalendarItem::tCalendarItem(const tinyxml2::XMLElement* xml) :
647647 XMLINIT(IsResponseRequested),
648648 XMLINIT(MyResponseType),
649649 XMLINIT(Organizer),
650- // XMLINIT(RequiredAttendees),
651- // XMLINIT(OptionalAttendees),
652- // XMLINIT(Resources),
650+ XMLINIT(RequiredAttendees),
651+ XMLINIT(OptionalAttendees),
652+ XMLINIT(Resources),
653653 XMLINIT(AppointmentReplyTime),
654654 XMLINIT(AppointmentSequenceNumber),
655655 XMLINIT(AppointmentState),
@@ -1341,6 +1341,14 @@ void tSingleRecipient::serialize(XMLElement* xml) const
13411341 XMLDUMPT (Mailbox);
13421342}
13431343
1344+ tAttendee::tAttendee (const tinyxml2::XMLElement* xml) :
1345+ XMLINIT(Mailbox),
1346+ XMLINIT(ResponseType),
1347+ XMLINIT(LastResponseTime),
1348+ XMLINIT(ProposedStart),
1349+ XMLINIT(ProposedEnd)
1350+ {}
1351+
13441352void tAttendee::serialize (XMLElement* xml) const
13451353{
13461354 XMLDUMPT (Mailbox);
Original file line number Diff line number Diff line change @@ -1410,6 +1410,7 @@ struct tAttendee : public NS_EWS_Types {
14101410
14111411 tAttendee () = default ;
14121412 explicit tAttendee (const TPROPVAL_ARRAY&);
1413+ explicit tAttendee (const tinyxml2::XMLElement*);
14131414};
14141415
14151416/* *
You can’t perform that action at this time.
0 commit comments