diff options
author | Laxmikant Rashinkar <LK.Rashinkar@gmail.com> | 2013-08-25 18:02:04 -0700 |
---|---|---|
committer | Laxmikant Rashinkar <LK.Rashinkar@gmail.com> | 2013-08-25 18:02:04 -0700 |
commit | f8f648c57432a3238a17dc70909947a30ccaebae (patch) | |
tree | 95ffb2fb9409f63be8e322168439cfd1f3f97d3a /tcutils/main.cpp | |
parent | fa40106a697611a35b57459c9403cc440a0cc865 (diff) | |
download | xrdp-proprietary-f8f648c57432a3238a17dc70909947a30ccaebae.tar.gz xrdp-proprietary-f8f648c57432a3238a17dc70909947a30ccaebae.zip |
added tcutils, a utility for unmounting usb drives remotely
Diffstat (limited to 'tcutils/main.cpp')
-rw-r--r-- | tcutils/main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/tcutils/main.cpp b/tcutils/main.cpp new file mode 100644 index 00000000..d951345f --- /dev/null +++ b/tcutils/main.cpp @@ -0,0 +1,11 @@ +#include <QtGui/QApplication> +#include "mainwindow.h" + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} |