aimlwriter.h
来自「J-Alice是一个用C++实现的Ailcebot的克隆。它可以做为一个mini」· C头文件 代码 · 共 17 行
H
17 行
#ifndef AIML_WRITER_H
#define AIML_WRITER_H
#include <string>
#include "Element.h"
using namespace std;
class AimlWriter
{
public:
static string parse(PElement, bool pretty, const string &rootName = "", bool addRoot = false);
static string recurse(PElement);
static string prettyAiml(PElement);
};
#endif
⌨️ 快捷键说明
复制代码Ctrl + C
搜索代码Ctrl + F
全屏模式F11
增大字号Ctrl + =
减小字号Ctrl + -
显示快捷键?