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

  1. // ChildFrm.cpp : implementation of the CChildFrame class
  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.  
  11. #include "ChildFrm.h"
  12.  
  13. #ifdef _DEBUG
  14. #define new DEBUG_NEW
  15. #undef THIS_FILE
  16. static char THIS_FILE[] = __FILE__;
  17. #endif
  18.  
  19. /////////////////////////////////////////////////////////////////////////////
  20. // CChildFrame
  21. IMPLEMENT_DYNCREATE(CChildFrame, CMDIChildWnd)
  22.  
  23. BEGIN_MESSAGE_MAP(CChildFrame, CMDIChildWnd)
  24.     //{{AFX_MSG_MAP(CChildFrame)
  25.         // NOTE - the ClassWizard will add and remove mapping macros here.
  26.         //    DO NOT EDIT what you see in these blocks of generated code !
  27.     //}}AFX_MSG_MAP
  28. END_MESSAGE_MAP()
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31. // CChildFrame construction/destruction
  32. CChildFrame::CChildFrame()
  33.     {
  34.     }
  35.  
  36. CChildFrame::~CChildFrame()
  37.     {
  38.     }
  39.  
  40. /////////////////////////////////////////////////////////////////////////////
  41. // CChildFrame diagnostics
  42. #ifdef _DEBUG
  43. void CChildFrame::AssertValid() const
  44.     {
  45.     CMDIChildWnd::AssertValid();
  46.     }
  47.  
  48. void CChildFrame::Dump(CDumpContext& dc) const
  49.     {
  50.     CMDIChildWnd::Dump(dc);
  51.     }
  52.  
  53. #endif //_DEBUG
  54.  
  55. /////////////////////////////////////////////////////////////////////////////
  56. // CChildFrame message handlers
  57.