choosefood.h

来自「vc编译的酒店管理系统」· C头文件 代码 · 共 65 行

H
65
字号
#if !defined(AFX_CHOOSEFOOD_H__1511961C_43B6_40C4_A145_B2DCEAECED23__INCLUDED_)
#define AFX_CHOOSEFOOD_H__1511961C_43B6_40C4_A145_B2DCEAECED23__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000
// ChooseFood.h : header file
//
#include "InfoSet.h"
/////////////////////////////////////////////////////////////////////////////
// CChooseFood dialog
class CFoodInfoSet;
class CChooseFood : public CDialog
{
// Construction
public:
	CChooseFood(CWnd* pParent = NULL);   // standard constructor

// Dialog Data
	//{{AFX_DATA(CChooseFood)
	enum { IDD = IDD_CHOOSEFOOD };
	CEdit	Paid;
	CEdit	Sum;
	CEdit	Rebate;
	CListBox	FoodBillList;
	CEdit	FoodNum;
	CListBox	FoodList;
	CEdit	BillCode;
	CEdit	HandCode;
	int		m_PaidType;
	//}}AFX_DATA
	bool bStriked;
	CBillInfoSet m_BillInfoSet;
    CFoodInfoSet m_FoodInfoSet;
	CGuestInfoSet m_GuestInfoSet;
    CBillContentInfoSet m_BillContentInfoSet;
    float m_DefaultSum;
// Overrides
	// ClassWizard generated virtual function overrides
	//{{AFX_VIRTUAL(CChooseFood)
	protected:
	virtual void DoDataExchange(CDataExchange* pDX);    // DDX/DDV support
	//}}AFX_VIRTUAL

// Implementation
protected:

	// Generated message map functions
	//{{AFX_MSG(CChooseFood)
	virtual BOOL OnInitDialog();
	afx_msg void OnAdd();
	afx_msg void OnDelete();
	afx_msg void OnUpdatedata();
	afx_msg void OnRadio();
	virtual void OnOK();
	virtual void OnCancel();
	//}}AFX_MSG
	DECLARE_MESSAGE_MAP()
};

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

#endif // !defined(AFX_CHOOSEFOOD_H__1511961C_43B6_40C4_A145_B2DCEAECED23__INCLUDED_)

⌨️ 快捷键说明

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