📄 sticky2.h
字号:
#ifndef STICKY2_H
#define STICKY2_H
#include <string>
class NoteStorage
{
... Methods implemented by all backing stores ...
};
class StickyNote
{
public:
// Public methods
void SetText(const string& strNewNoteText);
void Save(NoteStorage& PersistPlace);
void Load(NoteStorage& PersistPlace);
private:
// Now this data is private
string strNoteText;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -