⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 iteminfo.h

📁 一个帮助你学习英语的软件~~很不错的咯~~ 对功能又做了改进~大家支持下哈~
💻 H
字号:
//PK 2007/02/09 - 22
//PK Recite
#pragma once

#include "global.h"

class CItem;

class CItemInfo
{
	friend CItem;
public:
	CItemInfo() : _times(0) {}

	int times() const { return _times; }
	void update();
	date next_day();

	bool no_study() { return _last_access.is_not_a_date(); }

private:
	friend sr::access;
	template<class Archive>
	void serialize(Archive & ar, const unsigned int version)
	{
		ar & _last_access & _times;
	}

	//PK these properties should be serialized
	date _last_access;
	int _times;
};

⌨️ 快捷键说明

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