summaryrefslogtreecommitdiffstats
path: root/src/main.cpp
diff options
context:
space:
mode:
authorNils Schwabe2014-03-03 18:11:34 +0100
committerNils Schwabe2014-03-03 18:11:34 +0100
commitfc65962bd64b0e4972eeef1d325c39c51781e9f8 (patch)
tree308e2cc3931d97e4aed2ae0ec6a0e61c9df3b668 /src/main.cpp
parentadded files from vmchooser1 (diff)
downloadvmchooser2-fc65962bd64b0e4972eeef1d325c39c51781e9f8.tar.gz
vmchooser2-fc65962bd64b0e4972eeef1d325c39c51781e9f8.tar.xz
vmchooser2-fc65962bd64b0e4972eeef1d325c39c51781e9f8.zip
Added httpxmldownloader
Diffstat (limited to 'src/main.cpp')
-rw-r--r--src/main.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/src/main.cpp b/src/main.cpp
index 8ccbba2..d1b0ace 100644
--- a/src/main.cpp
+++ b/src/main.cpp
@@ -18,6 +18,7 @@
#include "save_restore_session.h"
#include "vsession.h"
#include "xsession.h"
+#include "httpxmldownloader.h"
bool myLessThan(Session* a, Session* b) {
return *a < *b;
@@ -50,6 +51,11 @@ int main(int argc, char *argv[]) {
"\nFILE can be a vmware .xml or an X .desktop file\n")
.toUtf8().data());
+ // ---------
+ std::cout << "testing http" << std::endl;
+ httpxmldownloader httpxmldownloader;
+ // ---------
+
if (cmdOptions.contains("error")) {
std::cerr << usage;
return EXIT_FAILURE;