operation.h

来自「MFC写的银行储蓄系统」· C头文件 代码 · 共 62 行

H
62
字号
#if !defined(AFX_OPERATION_H__2141A078_2F73_44C5_85A5_48B3D86A540F__INCLUDED_)
#define AFX_OPERATION_H__2141A078_2F73_44C5_85A5_48B3D86A540F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
#include "CWITHDRAWAL.H"
#include "SWITHDRAWAL.H"
#include "DEPOSIT.H"
#include "Savings.h"
#include "Checkings.h"
#include "Account.h"
// operation.h : header file
//

/////////////////////////////////////////////////////////////////////////////
// COPERATION dialog

class COPERATION : public CDialog
{
// Construction
public:
	COPERATION(CWnd* pParent = NULL);   // standard constructor
    CCWITHDRAWAL cwithdrawal;
	CSWITHDRAWAL swithdrawal;
	CDEPOSIT deposit;
	Savings *aS;
	Checkings *aC;
	int tag;
// Dialog Data
	//{{AFX_DATA(COPERATION)
	enum { IDD = IDD_PERSONINFO_DIALOG };
	int		m_accnumber;
	double	m_balance;
	//}}AFX_DATA


// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(COPERATION)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(COPERATION)
	afx_msg void OnCancleButton();
	afx_msg void OnDepositButton();
	afx_msg void OnWithdrawalButton();
	virtual BOOL OnInitDialog();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

//{{AFX_INSERT_LOCATION}}
// Microsoft Visual C++ will insert additional declarations immediately before the previous line.

#endif // !defined(AFX_OPERATION_H__2141A078_2F73_44C5_85A5_48B3D86A540F__INCLUDED_)

⌨️ 快捷键说明

复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?