attdlg.cpp
上传用户:detv0711
上传日期:2014-09-18
资源大小:360k
文件大小:1k
源码类别:

CAD

开发平台:

Visual C++

  1. // attdlg.cpp : implementation file
  2. //
  3. #include "StdAfx.h"
  4. #include "resource.h"
  5. #include "attdlg.h"
  6. #ifdef _DEBUG
  7. #define new DEBUG_NEW
  8. #undef THIS_FILE
  9. static char THIS_FILE[] = __FILE__;
  10. #endif
  11. /////////////////////////////////////////////////////////////////////////////
  12. // attdlg dialog
  13. attdlg::attdlg(CWnd* pParent /*=NULL*/)
  14. : CDialog(attdlg::IDD, pParent)
  15. {
  16. //{{AFX_DATA_INIT(attdlg)
  17. // NOTE: the ClassWizard will add member initialization here
  18. //}}AFX_DATA_INIT
  19. }
  20. void attdlg::DoDataExchange(CDataExchange* pDX)
  21. {
  22. CDialog::DoDataExchange(pDX);
  23. //{{AFX_DATA_MAP(attdlg)
  24. // NOTE: the ClassWizard will add DDX and DDV calls here
  25. //}}AFX_DATA_MAP
  26. }
  27. BEGIN_MESSAGE_MAP(attdlg, CDialog)
  28. //{{AFX_MSG_MAP(attdlg)
  29. //}}AFX_MSG_MAP
  30. END_MESSAGE_MAP()
  31. /////////////////////////////////////////////////////////////////////////////
  32. // attdlg message handlers
  33. BOOL attdlg::OnInitDialog() 
  34. {
  35. CDialog::OnInitDialog();
  36. // TODO: Add extra initialization here
  37. return TRUE;  // return TRUE unless you set the focus to a control
  38.               // EXCEPTION: OCX Property Pages should return FALSE
  39. }