From 7bbc2a93b6f123dfe8d2b97df8a4239032a6397b Mon Sep 17 00:00:00 2001 From: Louie S Date: Fri, 16 Feb 2024 18:32:53 -0500 Subject: First commit --- src/main.cpp | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 src/main.cpp (limited to 'src/main.cpp') diff --git a/src/main.cpp b/src/main.cpp new file mode 100644 index 0000000..f7d69ee --- /dev/null +++ b/src/main.cpp @@ -0,0 +1,12 @@ +#include +#include + +#include "assignmentList.h" + +int main(int argc, char **argv) { + QApplication app (argc, argv); + + AssignmentList window; + + return app.exec(); +} -- cgit