sticky2.h

来自「VC++串口通信设。本书详细说明讲解了在VC++环境下编写串口通信得过程。值得一」· C头文件 代码 · 共 29 行

H
29
字号
#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 + =
减小字号Ctrl + -
显示快捷键?