diff options
| author | Alee <Alee14498@gmail.com> | 2019-02-02 22:12:45 -0500 |
|---|---|---|
| committer | Alee <Alee14498@gmail.com> | 2019-02-02 22:12:45 -0500 |
| commit | b4c3a2088b8ecdeb33e3b21211357f67a5d79243 (patch) | |
| tree | 361780e3bf79dab14a873002c2808c3196240e16 /main.cpp | |
| download | Project-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.tar.gz Project-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.tar.bz2 Project-Xeon-b4c3a2088b8ecdeb33e3b21211357f67a5d79243.zip | |
Initial Commit (New branch)
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..b48f94e --- /dev/null +++ b/main.cpp @@ -0,0 +1,11 @@ +#include "mainwindow.h" +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + MainWindow w; + w.show(); + + return a.exec(); +} |
