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
~134 People Reached
Favorite Forums
Favorite Tags
c++ x 1
Member Avatar for ASH168

HI I NEED TO WRITE A C++ CODE[DEFINTION & DECLARATION] FOR THE NECESSARY COPY CONSTRUCTORS & ASSIGNMENT OPERATORS TO ENSURE THAT A DEEP COPY TAKES PLACE. [code]class CShop { public: CShop(); ~CShop(); private: CEmployeeContainer* m_pEmployees; char* m_strShopName; }; class CEmployeeContainer { public: CEmployeeContainer(); ~CEmployeeContainer(); private: CBoss* m_pBoss; list<string> m_listEmployeeNames; }; …

Member Avatar for Narue
0
134