58 lines
1.4 KiB
C
58 lines
1.4 KiB
C
|
#if !defined(AFX_DLG_PASSWD_H__95F1F896_6D77_4D66_8CDD_87618B93653D__INCLUDED_)
|
||
|
#define AFX_DLG_PASSWD_H__95F1F896_6D77_4D66_8CDD_87618B93653D__INCLUDED_
|
||
|
|
||
|
#include "StdAfx.h" // Added by ClassView
|
||
|
#if _MSC_VER > 1000
|
||
|
#pragma once
|
||
|
#endif // _MSC_VER > 1000
|
||
|
// DLG_Passwd.h : header file
|
||
|
//
|
||
|
|
||
|
/////////////////////////////////////////////////////////////////////////////
|
||
|
// DLG_Passwd dialog
|
||
|
|
||
|
class DLG_Passwd : public CDialog
|
||
|
{
|
||
|
protected:
|
||
|
SM_User m_User;
|
||
|
// Construction
|
||
|
public:
|
||
|
SM_User GetParam();
|
||
|
void SetParam( SM_User user );
|
||
|
DLG_Passwd(CWnd* pParent = NULL); // standard constructor
|
||
|
|
||
|
// Dialog Data
|
||
|
//{{AFX_DATA(DLG_Passwd)
|
||
|
enum { IDD = IDD_PASSWD };
|
||
|
CString m_strNew;
|
||
|
CString m_strNewRe;
|
||
|
CString m_strUser;
|
||
|
CString m_strYmm;
|
||
|
//}}AFX_DATA
|
||
|
|
||
|
|
||
|
// Overrides
|
||
|
// ClassWizard generated virtual function overrides
|
||
|
//{{AFX_VIRTUAL(DLG_Passwd)
|
||
|
protected:
|
||
|
virtual void DoDataExchange(CDataExchange* pDX); // DDX/DDV support
|
||
|
//}}AFX_VIRTUAL
|
||
|
|
||
|
// Implementation
|
||
|
protected:
|
||
|
|
||
|
// Generated message map functions
|
||
|
//{{AFX_MSG(DLG_Passwd)
|
||
|
virtual void OnOK();
|
||
|
virtual BOOL OnInitDialog();
|
||
|
//}}AFX_MSG
|
||
|
DECLARE_MESSAGE_MAP()
|
||
|
public:
|
||
|
afx_msg void OnBnClickedOk();
|
||
|
};
|
||
|
|
||
|
//{{AFX_INSERT_LOCATION}}
|
||
|
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.
|
||
|
|
||
|
#endif // !defined(AFX_DLG_PASSWD_H__95F1F896_6D77_4D66_8CDD_87618B93653D__INCLUDED_)
|