summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-10 22:42:42 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-01-10 22:42:42 (GMT)
commit7aa7095d17a180d663cd9647c31d99d97c1dca4f (patch)
tree460bc3a67f0adc3199bec9f22ee15a102263eb4c /src/uscxml/Factory.h
parentda1032ffbff229ce2ca9a83d47522ff45c90ba23 (diff)
downloaduscxml-7aa7095d17a180d663cd9647c31d99d97c1dca4f.zip
uscxml-7aa7095d17a180d663cd9647c31d99d97c1dca4f.tar.gz
uscxml-7aa7095d17a180d663cd9647c31d99d97c1dca4f.tar.bz2
Major changes - see details
- Dynamic SceneGraph ML - V8 DOM for ecmascript datamodel - New heartbeat invoker - Fixed various bugs
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;