home *** CD-ROM | disk | FTP | other *** search
/ Mastering MFC Development / MMD.ISO / samples / c10 / query / query.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-02-20  |  1.3 KB  |  47 lines

  1. // Query.h : main header file for the QUERY application
  2. //
  3.  
  4. #if !defined(AFX_QUERY_H__47DD6DA4_62DE_11D0_9F76_00AA00680BB3__INCLUDED_)
  5. #define AFX_QUERY_H__47DD6DA4_62DE_11D0_9F76_00AA00680BB3__INCLUDED_
  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. // CQueryApp:
  15. // See Query.cpp for the implementation of this class
  16. //
  17.  
  18. class CQueryApp : public CWinApp
  19. {
  20. public:
  21.     CQueryApp();
  22.  
  23. // Overrides
  24.     // ClassWizard generated virtual function overrides
  25.     //{{AFX_VIRTUAL(CQueryApp)
  26.     public:
  27.     virtual BOOL InitInstance();
  28.     //}}AFX_VIRTUAL
  29.  
  30. // Implementation
  31.  
  32.     //{{AFX_MSG(CQueryApp)
  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(AFX_QUERY_H__47DD6DA4_62DE_11D0_9F76_00AA00680BB3__INCLUDED_)
  47.