aboutsummaryrefslogtreecommitdiffstats
path: root/gui/main.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'gui/main.cpp')
-rw-r--r--gui/main.cpp15
1 files changed, 15 insertions, 0 deletions
diff --git a/gui/main.cpp b/gui/main.cpp
new file mode 100644
index 0000000..48f2990
--- /dev/null
+++ b/gui/main.cpp
@@ -0,0 +1,15 @@
+#include "stmdsp.hpp"
+
+#include <iostream>
+
+int main()
+{
+ stmdsp::scanner scanner;
+
+ scanner.scan();
+ for (const auto& device : scanner.devices())
+ std::cout << "Found stmdsp at: " << device.path() << std::endl;
+
+ return 0;
+}
+