page.h
来自「TTS语音开发示例」· C头文件 代码 · 共 22 行
H
22 行
#ifndef _PAGE
#define _PAGE
#include <string>
#include <list>
using namespace std;
class Element
{
public:
bool m_isEnglish;
string m_content;
};
class Sentence
{
public:
list<Element> m_sentence;
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?