WorkerDlg.h 1.3 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455
  1. #if !defined(AFX_WORKERDLG_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_)
  2. #define AFX_WORKERDLG_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_
  3. #if _MSC_VER > 1000
  4. #pragma once
  5. #endif // _MSC_VER > 1000
  6. // WorkerDlg.h : header file
  7. //
  8. /////////////////////////////////////////////////////////////////////////////
  9. // WorkerDlg dialog
  10. class WorkerDlg : public CDialog
  11. {
  12. // Construction
  13. public:
  14. WorkerDlg(CWnd* pParent = NULL); // standard constructor
  15. int m_linepos;
  16. // Dialog Data
  17. //{{AFX_DATA(WorkerDlg)
  18. enum {
  19. IDD = IDD_DLGWorker
  20. };
  21. CString m_phone;
  22. CString m_name;
  23. CString m_sex;
  24. CString m_bm;
  25. //}}AFX_DATA
  26. // Overrides
  27. // ClassWizard generated virtual function overrides
  28. //{{AFX_VIRTUAL(WorkerDlg)
  29. protected:
  30. virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
  31. //}}AFX_VIRTUAL
  32. // Implementation
  33. protected:
  34. // Generated message map functions
  35. //{{AFX_MSG(WorkerDlg)
  36. virtual BOOL OnInitDialog();
  37. afx_msg void OnLButtonDown(UINT nFlags, CPoint point);
  38. virtual void OnOK();
  39. virtual void OnCancel();
  40. //}}AFX_MSG
  41. afx_msg LRESULT OnCloseWin(WPARAM wParam, LPARAM lParam);
  42. DECLARE_MESSAGE_MAP()
  43. };
  44. //{{AFX_INSERT_LOCATION}}
  45. // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
  46. #endif // !defined(AFX_WORKERDLG_H__B9CB820E_682A_4973_A271_DD909C9BE2A7__INCLUDED_)