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

  1. // PerfStatsDoc.cpp : implementation 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 "stdafx.h"
  9. #include "MFCPerf.h"
  10. #include "PerfDoc.h"
  11.  
  12. #ifdef _DEBUG
  13. #define new DEBUG_NEW
  14. #undef THIS_FILE
  15. static char THIS_FILE[] = __FILE__;
  16. #endif
  17.  
  18. /////////////////////////////////////////////////////////////////////////////
  19. // CPerfStatsDoc
  20. IMPLEMENT_DYNCREATE(CPerfStatsDoc, CDocument)
  21.  
  22. CPerfStatsDoc::CPerfStatsDoc()
  23.     {
  24.     }
  25.  
  26. CPerfStatsDoc::~CPerfStatsDoc()
  27.     {
  28.     }
  29.  
  30.  
  31. BEGIN_MESSAGE_MAP(CPerfStatsDoc, CDocument)
  32.     //{{AFX_MSG_MAP(CPerfStatsDoc)
  33.         // NOTE - the ClassWizard will add and remove mapping macros here.
  34.     //}}AFX_MSG_MAP
  35. END_MESSAGE_MAP()
  36.  
  37. /////////////////////////////////////////////////////////////////////////////
  38. // CPerfStatsDoc diagnostics
  39.  
  40. #ifdef _DEBUG
  41. void CPerfStatsDoc::AssertValid() const
  42.     {
  43.     CDocument::AssertValid();
  44.     }
  45.  
  46. void CPerfStatsDoc::Dump(CDumpContext& dc) const
  47.     {
  48.     CDocument::Dump(dc);
  49.     }
  50. #endif //_DEBUG
  51.  
  52. /////////////////////////////////////////////////////////////////////////////
  53. // CPerfStatsDoc commands
  54.