home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 32 / IOPROG_32.ISO / SOFT / SqlEval7 / devtools / samples / ODBC / mfcperf / perfdoc.h < prev    next >
Encoding:
C/C++ Source or Header  |  1997-05-20  |  1.2 KB  |  46 lines

  1. // PerfStatsDoc.h : header file
  2. //
  3. // This file is part of Microsoft SQL Server online documentation.
  4. // Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
  5. //
  6. // This source code is an intended supplement to the Microsoft SQL
  7. // Server online references and related electronic documentation.
  8. #include "odbcss.h"
  9.  
  10. /////////////////////////////////////////////////////////////////////////////
  11. // CPerfStatsDoc document
  12. class CPerfStatsDoc : public CDocument
  13. {
  14. protected:
  15.     CPerfStatsDoc();           // protected constructor used by dynamic creation
  16.     DECLARE_DYNCREATE(CPerfStatsDoc)
  17.  
  18. // Attributes
  19. public:
  20.     SQLPERF     m_perfSlow;
  21.     SQLPERF     m_perfFast;
  22.  
  23. // Operations
  24. public:
  25.  
  26. // Overrides
  27.     // ClassWizard generated virtual function overrides
  28.     //{{AFX_VIRTUAL(CPerfStatsDoc)
  29.     //}}AFX_VIRTUAL
  30.  
  31. // Implementation
  32. public:
  33.     virtual ~CPerfStatsDoc();
  34. #ifdef _DEBUG
  35.     virtual void AssertValid() const;
  36.     virtual void Dump(CDumpContext& dc) const;
  37. #endif
  38.  
  39.     // Generated message map functions
  40. protected:
  41.     //{{AFX_MSG(CPerfStatsDoc)
  42.         // NOTE - the ClassWizard will add and remove member functions here.
  43.     //}}AFX_MSG
  44.     DECLARE_MESSAGE_MAP()
  45. };
  46.