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

  1. // TableSettings.h : header file
  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. /////////////////////////////////////////////////////////////////////////////
  15. // CTableSettings dialog
  16.  
  17. class CTableSettings : public CPropertyPage
  18. {
  19.     DECLARE_DYNCREATE(CTableSettings)
  20.  
  21. // Construction
  22. public:
  23.     CTableSettings();
  24.     ~CTableSettings();
  25.  
  26. // Dialog Data
  27.     //{{AFX_DATA(CTableSettings)
  28.     enum { IDD = IDD_TABLEPAGE };
  29.     BOOL    m_bSynonyms;
  30.     BOOL    m_bSystemTables;
  31.     BOOL    m_bViews;
  32.     //}}AFX_DATA
  33.  
  34.  
  35. // Overrides
  36.     // ClassWizard generate virtual function overrides
  37.     //{{AFX_VIRTUAL(CTableSettings)
  38.     protected:
  39.     virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
  40.     //}}AFX_VIRTUAL
  41.  
  42. // Implementation
  43. protected:
  44.     // Generated message map functions
  45.     //{{AFX_MSG(CTableSettings)
  46.         // NOTE: the ClassWizard will add member functions here
  47.     //}}AFX_MSG
  48.     DECLARE_MESSAGE_MAP()
  49.  
  50. };
  51.