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

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