summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-04-22 14:02:03 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2014-04-22 14:02:03 (GMT)
commit1fb6bcf30f954e426f2d3002d14887574fb941dd (patch)
tree08cff7f2b879c50efe79e3c04d255075522af862 /src/uscxml/Factory.h
parent71c334bf4e35559496feac3f3cf00b72ceb88812 (diff)
downloaduscxml-1fb6bcf30f954e426f2d3002d14887574fb941dd.zip
uscxml-1fb6bcf30f954e426f2d3002d14887574fb941dd.tar.gz
uscxml-1fb6bcf30f954e426f2d3002d14887574fb941dd.tar.bz2
Major refactoring
- Moved tests - Changes to promela datamodel - Implemented Trie
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h12
1 files changed, 7 insertions, 5 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index 14325f1..02ce6b8 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -126,7 +126,7 @@ public:
void setElement(const Arabica::DOM::Element<std::string>& element) {
_element = element;
}
-
+
Arabica::DOM::Element<std::string> getElement() {
return _element;
}
@@ -181,7 +181,7 @@ public:
void setElement(const Arabica::DOM::Element<std::string>& element) {
_impl->setElement(element);
}
-
+
Arabica::DOM::Element<std::string> getElement() {
return _impl->getElement();
}
@@ -316,11 +316,13 @@ public:
_interpreter = interpreter;
}
- virtual std::string andExpressions(std::list<std::string>) { return ""; }
-
+ virtual std::string andExpressions(std::list<std::string>) {
+ return "";
+ }
+
static void throwErrorExecution(const std::string& cause);
static void throwErrorPlatform(const std::string& cause);
-
+
// we need it public for various static functions
InterpreterImpl* _interpreter;
};