summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index 172ec99..16b26da 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -58,6 +58,7 @@ class Invoker : public IOProcessor {
public:
virtual void invoke(InvokeRequest& req) = 0;
virtual void sendToParent(SendRequest& req) = 0;
+ virtual Invoker* create(Interpreter* interpreter) = 0;
};
class DataModel {
@@ -99,8 +100,11 @@ public:
static Factory* getInstance();
std::map<std::string, DataModel*> _dataModels;
+ std::map<std::string, std::string> _dataModelAliases;
std::map<std::string, IOProcessor*> _ioProcessors;
+ std::map<std::string, std::string> _ioProcessorAliases;
std::map<std::string, Invoker*> _invokers;
+ std::map<std::string, std::string> _invokerAliases;
std::map<std::string, ExecutableContent*> _executableContent;
static std::string pluginPath;