📄 nodemaster.h
字号:
/**
* Nodemaster - The real nodemapper ;-)
*
* @author Jonathan Roewen
*/
#ifndef NODEMASTER_H
#define NODEMASTER_H
#include <map>
#include <vector>
#include <string>
using namespace std;
#include "Template.h"
class Nodemaster
{
public:
Nodemaster() {
templates = NULL;
}
~Nodemaster() { }
Nodemaster *getChild(const string &);
void addChild(const string &, Nodemaster *);
string getTemplate();
void addTemplate(Template *t);
bool hasTemplate();
private:
map<char *, Nodemaster *> children;
// vector<Template> templates;
Template *templates;
// Template *templates;
// unsigned int lastIndex;
};
#endif
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -