home *** CD-ROM | disk | FTP | other *** search
/ QBasic & Borland Pascal & C / Delphi5.iso / Basic / Visual Basic.60 / COMMON / TOOLS / VCM / VCM.MDB / VcmComponentContainer / 14_Cabinet / DBVIEWER.H < prev    next >
Encoding:
C/C++ Source or Header  |  1998-05-18  |  1.5 KB  |  60 lines

  1. // DBViewer.h : main header file for the DBVIEWER application
  2. //
  3. // This is a part of the Microsoft Foundation Classes and
  4. // Templates (MFC&T).
  5. // Copyright (C) 1998 Microsoft Corporation
  6. // All rights reserved.
  7. //
  8. // This source code is only intended as a supplement to the
  9. // MFC&T Reference and related electronic documentation provided
  10. // with the library.  See these sources for detailed information
  11. // regarding the MFC&T product.
  12. //
  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. #include "ctrlext.h"
  20. #include "dbdoc.h"
  21. #include "dbtreevw.h"
  22. #include "dblistvw.h"
  23. #include "dbdoc.h"
  24.  
  25. /////////////////////////////////////////////////////////////////////////////
  26. // CDBViewApp:
  27. // See DBViewer.cpp for the implementation of this class
  28. //
  29.  
  30. class CDBViewApp : public CWinApp
  31. {
  32. public:
  33.     BOOL m_bPositionUpdate;
  34.     CDBViewApp();
  35.  
  36.     BOOL m_nMaxRecords;
  37.     BOOL m_bOpenODBC;
  38.     BOOL m_bShowWarnings;
  39.     BOOL m_bShowSystemObjects;
  40.  
  41. // Overrides
  42.     // ClassWizard generated virtual function overrides
  43.     //{{AFX_VIRTUAL(CDBViewApp)
  44.     public:
  45.     virtual BOOL InitInstance();
  46.     //}}AFX_VIRTUAL
  47.  
  48. // Implementation
  49.  
  50.     //{{AFX_MSG(CDBViewApp)
  51.     afx_msg void OnAppAbout();
  52.         // NOTE - the ClassWizard will add and remove member functions here.
  53.         //    DO NOT EDIT what you see in these blocks of generated code !
  54.     //}}AFX_MSG
  55.     DECLARE_MESSAGE_MAP()
  56. };
  57.  
  58.  
  59. /////////////////////////////////////////////////////////////////////////////
  60.