12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152 |
- #if !defined(AFX_SETSALARY_H__E5B1BBBD_A40A_49ED_89C5_40D81B020BB6__INCLUDED_)
- #define AFX_SETSALARY_H__E5B1BBBD_A40A_49ED_89C5_40D81B020BB6__INCLUDED_
- #if _MSC_VER > 1000
- #pragma once
- #endif // _MSC_VER > 1000
- // SetSalary.h : header file
- //
- /////////////////////////////////////////////////////////////////////////////
- // SetSalary dialog
- class SetSalary : public CDialog
- {
- // Construction
- public:
- SetSalary(CWnd* pParent = NULL); // standard constructor
- int year;
- int month;
- int selpos;
- CString name;
- CStringArray *pArray;
- // Dialog Data
- //{{AFX_DATA(SetSalary)
- enum { IDD = IDD_DLGSetSalary };
- CNumEdit m_editnum;
- CString m_money;
- //}}AFX_DATA
- // Overrides
- // ClassWizard generated virtual function overrides
- //{{AFX_VIRTUAL(SetSalary)
- protected:
- virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
- //}}AFX_VIRTUAL
- // Implementation
- protected:
- // Generated message map functions
- //{{AFX_MSG(SetSalary)
- virtual BOOL OnInitDialog();
- virtual void OnOK();
- //}}AFX_MSG
- DECLARE_MESSAGE_MAP()
- };
- //{{AFX_INSERT_LOCATION}}
- // Microsoft Visual C++ will insert additional declarations immediately before the previous line.
- #endif // !defined(AFX_SETSALARY_H__E5B1BBBD_A40A_49ED_89C5_40D81B020BB6__INCLUDED_)
|