home *** CD-ROM | disk | FTP | other *** search
- // PerfStatsView.h : header file
- //
- // This file is part of Microsoft SQL Server online documentation.
- // Copyright (C) 1992-1997 Microsoft Corporation. All rights reserved.
- //
- // This source code is an intended supplement to the Microsoft SQL
- // Server online references and related electronic documentation.
-
- /////////////////////////////////////////////////////////////////////////////
- // CPerfStatsView form view
- //{{AFX_INCLUDES()
- #include "msflexgr.h"
- //}}AFX_INCLUDES
-
- #ifndef __AFXEXT_H__
- #include <afxext.h>
- #endif
-
- class CPerfStatsView : public CFormView
- {
- protected:
- CPerfStatsView(); // protected constructor used by dynamic creation
- DECLARE_DYNCREATE(CPerfStatsView)
-
- // Form Data
- public:
- //{{AFX_DATA(CPerfStatsView)
- enum { IDD = IDD_PERFSTATS_FORM };
- CMSFlexGrid m_gridStats;
- //}}AFX_DATA
-
- // Attributes
- public:
-
- // Operations
- public:
- CPerfStatsDoc* GetDocument();
-
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(CPerfStatsView)
- public:
- virtual void OnInitialUpdate();
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- virtual void OnUpdate(CView* pSender, LPARAM lHint, CObject* pHint);
- //}}AFX_VIRTUAL
-
- // Implementation
- protected:
- virtual ~CPerfStatsView();
-
- #ifdef _DEBUG
- public:
- virtual void AssertValid() const;
- virtual void Dump(CDumpContext& dc) const;
- #endif
-
- // Generated message map functions
- //{{AFX_MSG(CPerfStatsView)
- // NOTE - the ClassWizard will add and remove member functions here.
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
-
- /////////////////////////////////////////////////////////////////////////////
- #ifndef _DEBUG // debug version in PerfStatsView.cpp
- inline CPerfStatsDoc* CPerfStatsView::GetDocument()
- { return (CPerfStatsDoc*)m_pDocument; }
- #endif
-