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

  1. #if !defined(FTP_H__7335DC63_2B1D_11D0_9F76_00AA00680BB3__INCLUDED_)
  2. #define FTP_H__7335DC63_2B1D_11D0_9F76_00AA00680BB3__INCLUDED_
  3.  
  4. // ftp.h : main header file for the FTP application
  5. //
  6.  
  7. #ifndef __AFXWIN_H__
  8.     #error include 'stdafx.h' before including this file for PCH
  9. #endif
  10.  
  11. #include "resource.h"       // main symbols
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // CFtpApp:
  15. // See ftp.cpp for the implementation of this class
  16. //
  17.  
  18. class CFtpApp : public CWinApp
  19. {
  20. public:
  21.     CFtpApp();
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CFtpApp)
  26.     public:
  27.     virtual BOOL InitInstance();
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31.  
  32.     //{{AFX_MSG(CFtpApp)
  33.     afx_msg void OnAppAbout();
  34.         // NOTE - the ClassWizard will add and remove member functions here.
  35.         //    DO NOT EDIT what you see in these blocks of generated code !
  36.     //}}AFX_MSG
  37.     DECLARE_MESSAGE_MAP()
  38. };
  39.  
  40.  
  41. /////////////////////////////////////////////////////////////////////////////
  42.  
  43. //{{AFX_INSERT_LOCATION}}
  44. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  45.  
  46. #endif // !defined(FTP_H__7335DC63_2B1D_11D0_9F76_00AA00680BB3__INCLUDED)
  47.