?? 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 + -