diff options
| author | Andrew Lee <alee14498@protonmail.com> | 2020-02-10 17:08:51 -0500 |
|---|---|---|
| committer | Andrew Lee <alee14498@protonmail.com> | 2020-02-10 17:08:51 -0500 |
| commit | ddde8a4aa12b24b3d2d6419e326be195435d69b9 (patch) | |
| tree | 0586ecee5600592be258e05317b8058fdcffb72a /main.cpp | |
| download | AleeBrowser-ddde8a4aa12b24b3d2d6419e326be195435d69b9.tar.gz AleeBrowser-ddde8a4aa12b24b3d2d6419e326be195435d69b9.tar.bz2 AleeBrowser-ddde8a4aa12b24b3d2d6419e326be195435d69b9.zip | |
Inital commit
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..7a461a0 --- /dev/null +++ b/main.cpp @@ -0,0 +1,11 @@ +#include "mainbrowser.h" + +#include <QApplication> + +int main(int argc, char *argv[]) +{ + QApplication a(argc, argv); + mainbrowser w; + w.show(); + return a.exec(); +} |
