home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / labs / c11 / lab02 / baseline / ic_2doc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.1 KB  |  51 lines

  1. // IC_2Doc.h : interface of the CIC_2Doc class
  2. //
  3. /////////////////////////////////////////////////////////////////////////////
  4.  
  5. class CIC_2Doc : public CDocument
  6. {
  7. protected: // create from serialization only
  8.     CIC_2Doc();
  9.     DECLARE_DYNCREATE(CIC_2Doc)
  10.  
  11. // Attributes
  12. public:
  13.     CString m_Server;
  14.     CString m_Object;
  15.     DWORD m_ServerType;
  16.     INTERNET_PORT m_Port;
  17.  
  18.     CStringList m_WebPage;
  19.  
  20. // Operations
  21. public:
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CIC_2Doc)
  26.     public:
  27.     virtual BOOL OnNewDocument();
  28.     virtual void Serialize(CArchive& ar);
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CIC_2Doc();
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38.  
  39. protected:
  40.  
  41. // Generated message map functions
  42. protected:
  43.     //{{AFX_MSG(CIC_2Doc)
  44.         // NOTE - the ClassWizard will add and remove member functions here.
  45.         //    DO NOT EDIT what you see in these blocks of generated code !
  46.     //}}AFX_MSG
  47.     DECLARE_MESSAGE_MAP()
  48. };
  49.  
  50. /////////////////////////////////////////////////////////////////////////////
  51.