summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Factory.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:55:27 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-02-20 21:55:27 (GMT)
commit47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b (patch)
treeb991daf52ca2051d2e3f89f8143b843bf1318449 /src/uscxml/Factory.h
parent8c30e4f664bb8b68f965165035ec29115486b065 (diff)
downloaduscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.zip
uscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.tar.gz
uscxml-47956a35d11495f2ebf6988c7f9d9dffe0bd3a4b.tar.bz2
Beautified source code again
Diffstat (limited to 'src/uscxml/Factory.h')
-rw-r--r--src/uscxml/Factory.h22
1 files changed, 16 insertions, 6 deletions
diff --git a/src/uscxml/Factory.h b/src/uscxml/Factory.h
index 9397e36..9cfc202 100644
--- a/src/uscxml/Factory.h
+++ b/src/uscxml/Factory.h
@@ -83,15 +83,25 @@ public:
_impl->setInterpreter(interpreter);
}
- std::string getLocalName() { return _impl->getLocalName(); }
- std::string getNamespace() { return _impl->getNamespace(); }
- void enterElement(const Arabica::DOM::Node<std::string>& node) { return _impl->enterElement(node); }
- void exitElement(const Arabica::DOM::Node<std::string>& node) { return _impl->exitElement(node); }
- bool processChildren() { return _impl->processChildren(); }
+ std::string getLocalName() {
+ return _impl->getLocalName();
+ }
+ std::string getNamespace() {
+ return _impl->getNamespace();
+ }
+ void enterElement(const Arabica::DOM::Node<std::string>& node) {
+ return _impl->enterElement(node);
+ }
+ void exitElement(const Arabica::DOM::Node<std::string>& node) {
+ return _impl->exitElement(node);
+ }
+ bool processChildren() {
+ return _impl->processChildren();
+ }
protected:
boost::shared_ptr<ExecutableContentImpl> _impl;
- };
+};
class IOProcessorImpl {
public: