aboutsummaryrefslogtreecommitdiffstats
path: root/gui/main.cpp
diff options
context:
space:
mode:
authorClyne Sullivan <clyne@bitgloo.com>2020-06-11 12:06:58 -0400
committerClyne Sullivan <clyne@bitgloo.com>2020-06-11 12:06:58 -0400
commit53f6b9ff28319547d06e09c99f8a6b0903410a55 (patch)
tree809d1473e101bc63c5242396ff323763e173a5ad /gui/main.cpp
parent7a6f7bd79215eda20377014415030663a9593bd6 (diff)
began work for GUI
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;
+}
+