home *** CD-ROM | disk | FTP | other *** search
/ io Programmo 23 / IOPROG_23.ISO / SOFT / MSGTRACE.ZIP / MyProjects / MsgTrace / MsgTracer / AboutDlg.cpp next >
Encoding:
C/C++ Source or Header  |  1998-05-30  |  1.2 KB  |  44 lines

  1. /////////////////////////////////////////////////////////////////////////////
  2. //
  3. // File        : AboutDlg.cpp
  4. // Project     : MsgTrace
  5. // Component   : MsgTracer
  6. //---------------------------------------------------------------------------
  7. // Description : about-dialog
  8. //
  9. /////////////////////////////////////////////////////////////////////////////
  10. //
  11. // SourceSafe Strings. Do not change.
  12. //---------------------------------------------------------------------------
  13. // $Author: jeskes $
  14. // $Date: $
  15. // $Revision: $
  16. //
  17. /////////////////////////////////////////////////////////////////////////////
  18.  
  19. #include "stdafx.h"
  20. #include "MsgTracerApp.h"
  21. #include "AboutDlg.h"
  22.  
  23. /////////////////////////////////////////////////////////////////////////////
  24.  
  25. BEGIN_MESSAGE_MAP(CAboutDlg, CDialog)
  26.     //{{AFX_MSG_MAP(CAboutDlg)
  27.     //}}AFX_MSG_MAP
  28. END_MESSAGE_MAP()
  29.  
  30. /////////////////////////////////////////////////////////////////////////////
  31.  
  32. CAboutDlg::CAboutDlg() : CDialog(CAboutDlg::IDD)
  33. {
  34.     //{{AFX_DATA_INIT(CAboutDlg)
  35.     //}}AFX_DATA_INIT
  36. }
  37.  
  38. void CAboutDlg::DoDataExchange(CDataExchange* pDX)
  39. {
  40.     CDialog::DoDataExchange(pDX);
  41.     //{{AFX_DATA_MAP(CAboutDlg)
  42.     //}}AFX_DATA_MAP
  43. }
  44.