diff options
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); |