diff options
| author | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-11-02 18:21:49 +0100 |
|---|---|---|
| committer | Xavier Del Campo Romero <xavi92@disroot.org> | 2025-11-12 00:47:10 +0100 |
| commit | b16e2f67e7d392890c6835f98ca9b2a7bb44fe2e (patch) | |
| tree | cf07afb610395dd182e1f243ffccf2a55a13effe /main.cpp | |
Diffstat (limited to 'main.cpp')
| -rw-r--r-- | main.cpp | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..8977eff --- /dev/null +++ b/main.cpp @@ -0,0 +1,11 @@ +#include "qwadb.h" + +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + QWadb w(a); + w.show(); + return a.exec(); +} |
