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

📄 filedoc.cpp

📁 用VC编的电子日记软件
💻 CPP
字号:
// FileDoc.cpp: implementation of the CFileDoc class.
//
//////////////////////////////////////////////////////////////////////

#include "stdafx.h"
#include "testd.h"
#include "FileDoc.h"

#ifdef _DEBUG
#undef THIS_FILE
static char THIS_FILE[]=__FILE__;
#define new DEBUG_NEW
#endif

//////////////////////////////////////////////////////////////////////
// Construction/Destruction
//////////////////////////////////////////////////////////////////////
IMPLEMENT_SERIAL( CFileDoc, CObject, 1 );

CFileDoc::CFileDoc()
{

}

CFileDoc::~CFileDoc()
{

}
void CFileDoc::Serialize(CArchive &ar)
{
	CObject::Serialize(ar);
	if(ar.IsStoring())
	{
		ar<<diary;
		ar<<moodcolor;
		ar<<year;
		ar<<date;
		ar<<key;
		ar<<path;
		ar<<ftcolor;
	}
	else
	{
		ar>>diary;
		ar>>moodcolor;
		ar>>year;
		ar>>date;
		ar>>key;
		ar>>path;
		ar>>ftcolor;
	}

}

⌨️ 快捷键说明

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