home *** CD-ROM | disk | FTP | other *** search
- //////////////////////
- // MY CODE STARTS HERE
- //////////////////////
-
- // PHONE.H
- //
- // Header file for the CPhone class.
-
-
- // CPhone class declaration.
- class CPhone : public CObject
- {
-
- // Needed for serialization.
- DECLARE_SERIAL(CPhone)
-
- public:
-
- // Constructor
- CPhone();
-
- // Data members
- CString m_Name;
- CString m_Phone;
-
- // The Serialize() function.
- virtual void Serialize(CArchive& ar);
-
- };
-
- ////////////////////
- // MY CODE ENDS HERE
- ////////////////////
-