customer.h

来自「C语言做的超市进销存源代码文件」· C头文件 代码 · 共 24 行

H
24
字号
#include<vector>
#include<fstream>
#include"super_marker.h"
using namespace std;
class Customer
{
private:
	ofstream sell_file;
	goods g;
	int static business_time;
	
public:
	
	float price;//总价
	vector<goods> vector;
	vector<goods>::iterator iterator;
	Customer();
	~Customer();
	void view(Market&);
	void buy(Market&);
	void check(Market&,int);
};
	
	

⌨️ 快捷键说明

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