📄 noteinfo.h
字号:
// NoteInfo.h: interface for the CNoteInfo class.
//
//////////////////////////////////////////////////////////////////////
#ifndef NOTEINFO_H
#define NOTEINFO_H
#include <e32std.h>
#include <s32strm.h>
//Link against: eNote.lib
class CNoteInfo
{
private:
HBufC* m_bufContent;
HBufC* m_bufTitle;
public:
CNoteInfo();
virtual ~CNoteInfo();
void SetTitle( TDes &aTitle );
void SetContent( TDes &aContent );
void Delete();
void GetTitle(TDes &aTitle );
void GetContent( TDes &aContent);
void ExternalizeL(RWriteStream& aStream);
void InternalizeL(RReadStream& aStream);
TDesC& GetNoteTitle() const;
TDesC& GetNoteContent() const;
};
#endif // NOTEINFO_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -