summaryrefslogtreecommitdiffstats
path: root/apps/uscxml-browser.cpp
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 /apps/uscxml-browser.cpp
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 'apps/uscxml-browser.cpp')
-rw-r--r--apps/uscxml-browser.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/apps/uscxml-browser.cpp b/apps/uscxml-browser.cpp
index d485b3a..037f9a1 100644
--- a/apps/uscxml-browser.cpp
+++ b/apps/uscxml-browser.cpp
@@ -132,7 +132,7 @@ int main(int argc, char** argv) {
if (options.pluginPath.length() > 0) {
Factory::pluginPath = options.pluginPath;
}
-
+
// setup HTTP server
HTTPServer::SSLConfig* sslConf = NULL;
if (options.certificate.length() > 0) {
@@ -155,7 +155,7 @@ int main(int argc, char** argv) {
debugger = new DebuggerServlet();
HTTPServer::getInstance()->registerServlet("/debug", debugger);
}
-
+
// instantiate and configure interpreters
std::list<Interpreter> interpreters;
std::map<std::string, InterpreterOptions*>::iterator confIter = options.interpreters.begin();
@@ -212,6 +212,6 @@ int main(int argc, char** argv) {
while(true)
tthread::this_thread::sleep_for(tthread::chrono::seconds(1));
}
-
+
return EXIT_SUCCESS;
} \ No newline at end of file