aboutsummaryrefslogtreecommitdiffstats
path: root/gui/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-06-12 18:49:09 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-06-12 18:49:09 -0400
commit876bbbec3a6bf3d02d4ab7020cc73eaa6e247e9e (patch)
treedb35b72e70f2f97e5448613f51f2f4de692a75a6 /gui/main.cpp
parent5233ad146e408d05636c5e419ffe3d7806abf7a3 (diff)
have basic wxwidgets gui working
Diffstat (limited to 'gui/main.cpp')
-rw-r--r--gui/main.cpp22
1 files changed, 13 insertions, 9 deletions
diff --git a/gui/main.cpp b/gui/main.cpp
index 48f2990..ae6ecb4 100644
--- a/gui/main.cpp
+++ b/gui/main.cpp
@@ -1,15 +1,19 @@
#include "stmdsp.hpp"
+#include "wxapp.hpp"
#include <iostream>
+#include <wx/app.h>
-int main()
-{
- stmdsp::scanner scanner;
+wxIMPLEMENT_APP(MainApp);
- scanner.scan();
- for (const auto& device : scanner.devices())
- std::cout << "Found stmdsp at: " << device.path() << std::endl;
-
- return 0;
-}
+//int main()
+//{
+// stmdsp::scanner scanner;
+//
+// scanner.scan();
+// for (const auto& device : scanner.devices())
+// std::cout << "Found stmdsp at: " << device.path() << std::endl;
+//
+// return 0;
+//}