home *** CD-ROM | disk | FTP | other *** search
/ 3D Graphics Programming for Windows 95 / 3D_Graphics_Programming_for_Windows_95_Microsoft_1996.iso / samples / basic / basic.h < prev    next >
C/C++ Source or Header  |  1996-03-03  |  951b  |  40 lines

  1. // Basic.h : main header file for the BASIC application
  2. //
  3.  
  4. #ifndef __AFXWIN_H__
  5.     #error include 'stdafx.h' before including this file for PCH
  6. #endif
  7.  
  8. #include "resource.h"       // main symbols
  9. #include <3dPlus.h>
  10.  
  11. /////////////////////////////////////////////////////////////////////////////
  12. // CBasicApp:
  13. // See Basic.cpp for the implementation of this class
  14. //
  15.  
  16. class CBasicApp : public CWinApp
  17. {
  18. public:
  19.     CBasicApp();
  20.  
  21. // Overrides
  22.     // ClassWizard generated virtual function overrides
  23.     //{{AFX_VIRTUAL(CBasicApp)
  24.     public:
  25.     virtual BOOL InitInstance();
  26.     virtual BOOL OnIdle(LONG lCount);
  27.     //}}AFX_VIRTUAL
  28.  
  29. // Implementation
  30.  
  31.     //{{AFX_MSG(CBasicApp)
  32.         // NOTE - the ClassWizard will add and remove member functions here.
  33.         //    DO NOT EDIT what you see in these blocks of generated code !
  34.     //}}AFX_MSG
  35.     DECLARE_MESSAGE_MAP()
  36. };
  37.  
  38.  
  39. /////////////////////////////////////////////////////////////////////////////
  40.