summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-12-16 00:12:53 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2012-12-16 00:12:53 (GMT)
commitd779abe6ff76a78f92d229fcf1f006f5cf1f9295 (patch)
tree8eded727de91266ba90610cda760c5274e296886 /src/uscxml/Factory.h
parentc78b469790301e3353b561137839c4a2e2ba1673 (diff)
downloaduscxml-d779abe6ff76a78f92d229fcf1f006f5cf1f9295.zip
uscxml-d779abe6ff76a78f92d229fcf1f006f5cf1f9295.tar.gz
uscxml-d779abe6ff76a78f92d229fcf1f006f5cf1f9295.tar.bz2
Take pluginpath as argument
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h4
1 files changed, 3 insertions, 1 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index 24d74e3..fcd907e 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -11,7 +11,7 @@
#include <set>
namespace uscxml {
-
+
// see http://stackoverflow.com/questions/228005/alternative-to-itoa-for-converting-integer-to-string-c
template <typename T> std::string toStr(T tmp) {
std::ostringstream out;
@@ -95,6 +95,8 @@ namespace uscxml {
std::map<std::string, Invoker*> _invokers;
std::map<std::string, ExecutableContent*> _executableContent;
+ static std::string pluginPath;
+
protected:
#ifdef BUILD_AS_PLUGINS
pluma::Pluma pluma;