home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / C / BC_502 / MODELES.PAK / MODELESS.H < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-06  |  1.3 KB  |  48 lines

  1. // modeless.h : main header file for the MODELESS application
  2. //
  3.  
  4. // This is a part of the Microsoft Foundation Classes C++ library.
  5. // Copyright (C) 1992-1995 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // Microsoft Foundation Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding the
  12. // Microsoft Foundation Classes product.
  13.  
  14. #ifndef __AFXWIN_H__
  15.     #error include 'stdafx.h' before including this file for PCH
  16. #endif
  17.  
  18. #include "resource.h"        // main symbols
  19.  
  20. /////////////////////////////////////////////////////////////////////////////
  21. // CModelessApp:
  22. // See modeless.cpp for the implementation of this class
  23. //
  24.  
  25. class CModelessApp : public CWinApp
  26. {
  27. public:
  28.     CModelessApp();
  29.  
  30. // Overrides
  31.     // ClassWizard generated virtual function overrides
  32.     //{{AFX_VIRTUAL(CModelessApp)
  33.     public:
  34.     virtual BOOL InitInstance();
  35.     //}}AFX_VIRTUAL
  36.  
  37. // Implementation
  38.  
  39.     //{{AFX_MSG(CModelessApp)
  40.         // NOTE - the ClassWizard will add and remove member functions here.
  41.         //    DO NOT EDIT what you see in these blocks of generated code !
  42.     //}}AFX_MSG
  43.     DECLARE_MESSAGE_MAP()
  44. };
  45.  
  46.  
  47. /////////////////////////////////////////////////////////////////////////////
  48.