📄 aimlprocessor.h
字号:
/**
* AimlProcessor - ABC for all processors (of tags)
*
* @author Jonathan Roewen
*/
#ifndef AIML_PROCESSOR_H
#define AIML_PROCESSOR_H
#include <string>
#include "Element.h"
#include "Match.h"
#include "Responder.h"
using namespace std;
//class Match;
//class Responder;
class AimlProcessor
{
public:
virtual ~AimlProcessor() { };
virtual string getName() const = 0;
virtual string getVersion() const = 0;
virtual string process(Match *, PElement, Responder *, const string &) = 0;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -