summaryrefslogtreecommitdiffstats
path: root/src/uscxml/Interpreter.h
diff options
context:
space:
mode:
authorStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-14 21:22:24 (GMT)
committerStefan Radomski <radomski@tk.informatik.tu-darmstadt.de>2013-04-14 21:22:24 (GMT)
commit1c10bc4bf19c5ce73e3e10380e613da8bf93a1b0 (patch)
treed2f89e5c4564ef7e363f17eaee3800650a5ab4bd /src/uscxml/Interpreter.h
parent631b88e42c3fb7e10dee390d170854e40c31fac0 (diff)
downloaduscxml-1c10bc4bf19c5ce73e3e10380e613da8bf93a1b0.zip
uscxml-1c10bc4bf19c5ce73e3e10380e613da8bf93a1b0.tar.gz
uscxml-1c10bc4bf19c5ce73e3e10380e613da8bf93a1b0.tar.bz2
Refactored URLs and fixed Windows URL handling
Diffstat (limited to 'src/uscxml/Interpreter.h')
-rw-r--r--src/uscxml/Interpreter.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/uscxml/Interpreter.h b/src/uscxml/Interpreter.h
index 5207930..f28eb69 100644
--- a/src/uscxml/Interpreter.h
+++ b/src/uscxml/Interpreter.h
@@ -107,7 +107,6 @@ public:
URL getBaseURI() {
return _baseURI;
}
- bool toAbsoluteURI(URL& uri);
void setCmdLineOptions(int argc, char** argv);
Data getCmdLineOptions() {
@@ -262,8 +261,6 @@ protected:
InterpreterServlet* _httpServlet;
std::set<InterpreterMonitor*> _monitors;
- static URL toBaseURI(const URL& url);
-
void executeContent(const Arabica::DOM::Node<std::string>& content, bool rethrow = false);
void executeContent(const Arabica::DOM::NodeList<std::string>& content, bool rethrow = false);
void executeContent(const Arabica::XPath::NodeSet<std::string>& content, bool rethrow = false);
@@ -374,9 +371,6 @@ public:
URL getBaseURI() {
return _impl->getBaseURI();
}
- bool toAbsoluteURI(URL& uri) {
- return _impl->toAbsoluteURI(uri);
- }
void setCmdLineOptions(int argc, char** argv) {
return _impl->setCmdLineOptions(argc, argv);