Posts
 
Reputation
Joined
Last Seen
0 Reputation Points
Unknown Quality Score

No one has voted on any posts yet. Votes from other community members are used to determine a member's reputation amongst their peers.

0 Endorsements
~178 People Reached
Favorite Forums
Favorite Tags
c++ x 3
Member Avatar for wander4heat

class Calendar { public: Calendar(); Calendar(Appointment mname); void AddToCalendar(Appointment mname); void RemoveFromCalendar(Appointment mname); private: vector < Appointment > meetings; }; // Calendar class Appointment { public: Appointment(); Appointment(vector< person > alist, Time stime, Time etime, Date d, Location p); vector< Person > getAttendees() Time getStartTime() Time getEndTime() Date getDate() Location …

Member Avatar for ithelp
0
80
Member Avatar for wander4heat

Hi, Thank you for your support. I am new to C++ and have started working with classes. I understand constructors, accessors and mutators. I have a program that I am working on and I am implementing my classes. I have six classes and have completed four. The top two, Calendar …

Member Avatar for VernonDozier
0
98