home *** CD-ROM | disk | FTP | other *** search
/ C/C++ User's Journal & Wi…eveloper's Journal Tools / C-C__Users_Journal_and_Windows_Developers_Journal_Tools_1997.iso / stingray / gridapp.h < prev    next >
C/C++ Source or Header  |  1996-10-27  |  1KB  |  56 lines

  1. // gridapp.h : main header file for the GRIDAPP application
  2. //
  3.  
  4. // This is a part of the Objective Grid C++ Library.
  5. // Copyright (C) 1995,1996 ClassWorks, Stefan Hoenig.
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to
  9. // the Objective Grid Classes Reference and related
  10. // electronic documentation provided with the library.
  11. // See these sources for detailed information regarding
  12. // the Objective Grid product.
  13. //
  14.  
  15. #ifndef __AFXWIN_H__
  16.     #error include 'stdafx.h' before including this file for PCH
  17. #endif
  18.  
  19. #include "resource.h"       // main symbols
  20.  
  21. /////////////////////////////////////////////////////////////////////////////
  22. // CGridSampleApp:
  23. // See gridapp.cpp for the implementation of this class
  24. //
  25.  
  26. class CGXStyle;
  27.  
  28. class CGridSampleApp : public CWinApp
  29. {
  30. public:
  31.     CGridSampleApp();
  32.  
  33. // Overrides
  34.     virtual BOOL InitInstance();
  35.     virtual BOOL ExitInstance();
  36.  
  37. // Implementation
  38.     CMultiDocTemplate *m_pSplitterTemplate;
  39.     CMultiDocTemplate *m_pDBaseBrowser;
  40.  
  41.     //{{AFX_MSG(CGridSampleApp)
  42.     afx_msg void OnAppAbout();
  43.     afx_msg void OnDialogSample1();
  44.     afx_msg void OnDialogSample2();
  45.     afx_msg void OnDialogSample3();
  46.     afx_msg void OnDialogSample4();
  47.     afx_msg void OnDialogSample5();
  48.     //}}AFX_MSG
  49.     DECLARE_MESSAGE_MAP()
  50.  
  51. public:
  52. };
  53.  
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56.