home *** CD-ROM | disk | FTP | other *** search
/ PC go! 1995 July / Image.iso / pcgo / programm / online / compserv / cserve / installt.cpp < prev    next >
Encoding:
C/C++ Source or Header  |  1994-07-06  |  982 b   |  40 lines

  1. // installt.cpp : implementation file
  2. //
  3.  
  4. #include "stdafx.h"
  5. #include "install.h"
  6. #include "installt.h"
  7.  
  8. #ifdef _DEBUG
  9. #undef THIS_FILE
  10. static char BASED_CODE THIS_FILE[] = __FILE__;
  11. #endif
  12.  
  13. /////////////////////////////////////////////////////////////////////////////
  14. // installt dialog
  15.  
  16. installt::installt(CWnd* pParent /*=NULL*/)
  17.     : CDialog(installt::IDD, pParent)
  18. {
  19.     //{{AFX_DATA_INIT(installt)
  20.         // NOTE: the ClassWizard will add member initialization here
  21.     //}}AFX_DATA_INIT
  22. }
  23.  
  24. void installt::DoDataExchange(CDataExchange* pDX)
  25. {
  26.     CDialog::DoDataExchange(pDX);
  27.     //{{AFX_DATA_MAP(installt)
  28.         // NOTE: the ClassWizard will add DDX and DDV calls here
  29.     //}}AFX_DATA_MAP
  30. }
  31.  
  32. BEGIN_MESSAGE_MAP(installt, CDialog)
  33.     //{{AFX_MSG_MAP(installt)
  34.         // NOTE: the ClassWizard will add message map macros here
  35.     //}}AFX_MSG_MAP
  36. END_MESSAGE_MAP()
  37.  
  38. /////////////////////////////////////////////////////////////////////////////
  39. // installt message handlers
  40.