diff options
author | clyne <clyne@bitgloo.com> | 2020-07-16 20:21:36 -0400 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-16 20:21:36 -0400 |
commit | 17cda07f3ef79069e9bed2eca6c20f2b7fcb60b9 (patch) | |
tree | 7e787e1b24100d539631a04993e1d6b53ac31f72 /gui/main.cpp | |
parent | 43c53c1122c64da20bbc6f54d2a087f5a457f669 (diff) | |
parent | f07e878cd23e6e35743358ea306951f2218653a4 (diff) |
Merge pull request #1 from tcsullivan/gui
Gui
Diffstat (limited to 'gui/main.cpp')
-rw-r--r-- | gui/main.cpp | 15 |
1 files changed, 3 insertions, 12 deletions
diff --git a/gui/main.cpp b/gui/main.cpp index 48f2990..29f74d3 100644 --- a/gui/main.cpp +++ b/gui/main.cpp @@ -1,15 +1,6 @@ -#include "stmdsp.hpp" +#include "wxapp.hpp" -#include <iostream> +#include <wx/app.h> -int main() -{ - stmdsp::scanner scanner; - - scanner.scan(); - for (const auto& device : scanner.devices()) - std::cout << "Found stmdsp at: " << device.path() << std::endl; - - return 0; -} +wxIMPLEMENT_APP(MainApp); |