24 #ifndef EVTEXTGENERATORCOMMANDSTABLE_HH
25 #define EVTEXTGENERATORCOMMANDSTABLE_HH
27 typedef std::map<std::string, std::string> Command;
28 typedef std::vector<Command> GeneratorCommands;
29 typedef std::map<std::string, GeneratorCommands > GlobalCommandMap;
37 void addCommand(std::string extGenerator, Command command) { _commandMap[extGenerator].push_back(command); }
38 const GeneratorCommands& getCommands(std::string extGenerator) {
return _commandMap[extGenerator]; }
47 GlobalCommandMap _commandMap;