summaryrefslogtreecommitdiffstats
path: root/src/bindings
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-08-01 12:55:04 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-08-01 12:55:04 (GMT)
commit3df6c9c6630f3b3b9b0876ae5bc8f2d12a15b253 (patch)
tree41f234c33e1e04015ef92a6b94212d9c7e97ad72 /src/bindings
parent720bbe5c1b8c0789b5c7ad9ffca33e52bf77f1da (diff)
downloaduscxml-3df6c9c6630f3b3b9b0876ae5bc8f2d12a15b253.zip
uscxml-3df6c9c6630f3b3b9b0876ae5bc8f2d12a15b253.tar.gz
uscxml-3df6c9c6630f3b3b9b0876ae5bc8f2d12a15b253.tar.bz2
Bug fixes and version bump
- New calendar invoker - Fixed memory leaks with JavaScriptCore - Compiles on windows again - Beautified source code indentation
Diffstat (limited to 'src/bindings')
-rw-r--r--src/bindings/swig/java/uscxml.i7
-rw-r--r--src/bindings/swig/php/uscxml.i2
2 files changed, 9 insertions, 0 deletions
diff --git a/src/bindings/swig/java/uscxml.i b/src/bindings/swig/java/uscxml.i
index 760846c..ee7133c 100644
--- a/src/bindings/swig/java/uscxml.i
+++ b/src/bindings/swig/java/uscxml.i
@@ -19,6 +19,11 @@
%ignore operator!=;
%ignore operator<;
%ignore operator=;
+%ignore operator[];
+%ignore operator std::list<Data>;
+%ignore operator std::string;
+%ignore operator std::map<std::string,Data>;
+
//**************************************************
// This ends up in the generated wrapper code
@@ -39,6 +44,8 @@ using namespace uscxml;
%ignore uscxml::SCXMLParser;
%ignore uscxml::InterpreterImpl;
+%ignore uscxml::Interpreter::getDelayQueue();
+
//***********************************************
// Parse the header file to generate wrappers
//***********************************************
diff --git a/src/bindings/swig/php/uscxml.i b/src/bindings/swig/php/uscxml.i
index f51309f..8500bfe 100644
--- a/src/bindings/swig/php/uscxml.i
+++ b/src/bindings/swig/php/uscxml.i
@@ -53,6 +53,8 @@ void*** tsrm_ls;
// Beautify interpreter class
//***********************************************
+%ignore uscxml::Interpreter::getDelayQueue();
+
%extend uscxml::Interpreter {
std::vector<std::string> getConfiguration() {
std::vector<std::string> config;