info.h

来自「全国交通咨询系统源代码」· C头文件 代码 · 共 33 行

H
33
字号
// Info.h: interface for the Info class.
//
//////////////////////////////////////////////////////////////////////

#if !defined(AFX_INFO_H__92806C4E_DA6C_11D4_8238_4C542D32048F__INCLUDED_)
#define AFX_INFO_H__92806C4E_DA6C_11D4_8238_4C542D32048F__INCLUDED_

#if _MSC_VER > 1000
#pragma once
#endif // _MSC_VER > 1000

class Info
{
private:
	int m_fee; //费用
	int m_time; //时刻
	int m_timespend; //耗时
public:
	void Serialize(CArchive& archive);
	int GetTimeSpend();
	int GetTime();
	int GetFee();
	Info & operator =(const Info &);
	void SetTimeSpend(int timespend=0);
	void SetTime(int time=0);
	void SetFee(int fee=0);
	Info();
	Info(const Info &);
	virtual ~Info();
};

#endif // !defined(AFX_INFO_H__92806C4E_DA6C_11D4_8238_4C542D32048F__INCLUDED_)

⌨️ 快捷键说明

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