home *** CD-ROM | disk | FTP | other *** search
/ Tricks of the Windows Gam…ming Gurus (2nd Edition) / Disc2.iso / msdn_vcb / samples / vc98 / mfc / general / dbvlist / dbvlist.h < prev    next >
Encoding:
C/C++ Source or Header  |  1998-03-27  |  1.6 KB  |  58 lines

  1. // DBVList.h : main header file for the DBVLIST application
  2. //
  3. // This is a part of the Microsoft Foundation Classes C++ library.
  4. // Copyright (C) 1992-1998 Microsoft Corporation
  5. // All rights reserved.
  6. //
  7. // This source code is only intended as a supplement to the
  8. // Microsoft Foundation Classes Reference and related
  9. // electronic documentation provided with the library.
  10. // See these sources for detailed information regarding the
  11. // Microsoft Foundation Classes product.
  12.  
  13. #if !defined(AFX_DBVLIST_H__13CCB743_ED59_11D0_8286_00C04FD73634__INCLUDED_)
  14. #define AFX_DBVLIST_H__13CCB743_ED59_11D0_8286_00C04FD73634__INCLUDED_
  15.  
  16. #if _MSC_VER >= 1000
  17. #pragma once
  18. #endif // _MSC_VER >= 1000
  19.  
  20. #ifndef __AFXWIN_H__
  21.     #error include 'stdafx.h' before including this file for PCH
  22. #endif
  23.  
  24. #include "resource.h"       // main symbols
  25.  
  26. /////////////////////////////////////////////////////////////////////////////
  27. // CDBVListApp:
  28. // See DBVList.cpp for the implementation of this class
  29. //
  30.  
  31. class CDBVListApp : public CWinApp
  32. {
  33. public:
  34.     CDBVListApp();
  35.  
  36. // Overrides
  37.     // ClassWizard generated virtual function overrides
  38.     //{{AFX_VIRTUAL(CDBVListApp)
  39.     public:
  40.     virtual BOOL InitInstance();
  41.     //}}AFX_VIRTUAL
  42.  
  43. // Implementation
  44.  
  45.     //{{AFX_MSG(CDBVListApp)
  46.     afx_msg void OnAppAbout();
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49. };
  50.  
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53.  
  54. //{{AFX_INSERT_LOCATION}}
  55. // Microsoft Developer Studio will insert additional declarations immediately before the previous line.
  56.  
  57. #endif // !defined(AFX_DBVLIST_H__13CCB743_ED59_11D0_8286_00C04FD73634__INCLUDED_)
  58.