cprintreportframe.h

来自「AA制消费管理系统 要深入学习C++面向对象编程的同学可以看看。」· C头文件 代码 · 共 37 行

H
37
字号
#ifndef _CPRINTPORT_H
#define _CPRINTPORT_H

#include "CSearchConsumInfo.h"
#include "CAddMoneyInfo.h"
#include "interface.h"
class CPrintReportFrame:
public CSearchConsumInfoFrame
{
public:
	CPrintReportFrame();//*************************************************构造函数
	~CPrintReportFrame();//************************************************析构函数
	void printReportFrame();//********************************************打印报表界面
	void printAddMoneyInfoBydate(string begin_date,string last_date);//****打印由日期查询到的充值消息

	


private:
	void printAllAccInfo();//**************************************************打印所有帐户的信息
	void printAddMoneyInfo(string begin_date,string last_date);//**************打印充值信息
	void SortInfoByDec(vector<CAddMoneyInfo> & veTemp);//***********************充值信息排序
	
	







};




#endif

⌨️ 快捷键说明

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