Question: can someone code this c++ projects? you need to use namespace std; thank you! 1 Class EmailAccount . The class EmailAccount is the high level

 can someone code this c++ projects? you need to use namespacestd; thank you! 1 Class EmailAccount . The class EmailAccount is the"high level" class which manages the message folders. . It is a

can someone code this c++ projects?

you need to use namespace std;

thank you!

1 Class EmailAccount . The class EmailAccount is the "high level" class which manages the message folders. . It is a relatively small class Most of the work is done in the folder classes. The class declaration is shown below . The class contains private data as follows, all of which are obvious. 1. The name of the owner Name _owner 2. A drafts folder (pointer) Drafts * drafts 3. A polymorphic pointer to the inbox BaseFolder* in. 4. A polymorphic pointer to the outbox BaseFolder*out class EmailAccount f public: EmailAccount (string s); EmailAccount O; const Name& owner () const 1 return _owner; // accessor Drafts& drafts return *_drafts; BaseFolder& in) return *_in; } BaseFolder& out) return *_out; b // accessor/mutator // accessor/mutator // accessor/mutator void send (Message *m); void receive (Message *m); void insert (Message *m); private: Name _owner; Drafts *_drafts; BaseFolder _in; BaseFolder* _out

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!