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

  1. // FtpDlg.h : header file
  2. //
  3.  
  4. /////////////////////////////////////////////////////////////////////////////
  5. // CFtpDlg dialog
  6.  
  7. class CFtpDlg : public CDialog
  8. {
  9. // Construction
  10. public:
  11.     CFtpDlg(CWnd* pParent = NULL);   // standard constructor
  12.  
  13. // Dialog Data
  14.     //{{AFX_DATA(CFtpDlg)
  15.     enum { IDD = IDD_DIALOG_FTP };
  16.     CString    m_strFile;
  17.     CString    m_strPath;
  18.     CString    m_strRoot;
  19.     CString    m_strServer;
  20.     CString    m_strGateway;
  21.     int        m_nCopyType;
  22.     //}}AFX_DATA
  23.  
  24.  
  25. // Overrides
  26.     // ClassWizard generated virtual function overrides
  27.     //{{AFX_VIRTUAL(CFtpDlg)
  28.     protected:
  29.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  30.     //}}AFX_VIRTUAL
  31.  
  32. // Implementation
  33. protected:
  34.  
  35.     // Generated message map functions
  36.     //{{AFX_MSG(CFtpDlg)
  37.         // NOTE: the ClassWizard will add member functions here
  38.     //}}AFX_MSG
  39.     DECLARE_MESSAGE_MAP()
  40. };
  41.