Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

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

image text in transcribedimage text in transcribedimage text in transcribed

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

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Oracle Databases On The Web Learn To Create Web Pages That Interface With Database Engines

Authors: Robert Papaj, Donald Burleson

11th Edition

1576100995, 978-1576100998

More Books

Students also viewed these Databases questions

Question

internationalization of business?

Answered: 1 week ago