📄 responder.h
字号:
/**
* Responder - ABC for all responders to implement
*
* @author Jonathan Roewen
*/
#ifndef RESPONDER_H
#define RESPONDER_H
#include "Element.h"
#include "Match.h"
#include <string>
using namespace std;
class Responder {
public:
virtual ~Responder() { };
/**
* Do we need the match element as well?
*/
virtual string respond(Match *, PElement, const string &) = 0;
};
#endif // RESPONDER_H
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -