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

📄 noteinfomanage.h

📁 symbian 2rd 备忘录
💻 H
字号:
#ifndef _NOTEINFOMANAGE_H_
#define _NOTEINFOMANAGE_H_

#include <e32base.h>
#include <s32strm.h>
#include "common.h"
#include "NoteInfo.h"

class CNoteInfoManage:public CBase
{
public:
	static CNoteInfoManage* NewL();
	static CNoteInfoManage* NewLC();
	~CNoteInfoManage();
	void Add(const TDesC& aDate,const TDesC& aTitle,const TDesC& aContent);
	void Delete(TInt aIndex);
	void Modify(TInt aIndex, const TDesC& aTitle, const TDesC& aContent);
	TInt GetCount();
	void GetNoteInfo(TInt aIndex, TDes& aDate,TDes& aTitle,TDes& aContent);
	void SaveNoteInfo();
private:
	CNoteInfoManage();
	void ConstructL();
	void ReadFile();
	void WriteFile();

	RPointerArray<CNoteInfo> m_NoteInfoArray;
};

#endif

⌨️ 快捷键说明

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