From 7a67fd5662029619a541bdaaf3c09be6e7d54ece Mon Sep 17 00:00:00 2001 From: Gerhard Hoffmann Date: Wed, 28 Feb 2024 16:08:04 +0100 Subject: [PATCH] start with main() --- main.cpp | 8 ++++++++ 1 file changed, 8 insertions(+) create mode 100644 main.cpp diff --git a/main.cpp b/main.cpp new file mode 100644 index 0000000..7dfe867 --- /dev/null +++ b/main.cpp @@ -0,0 +1,8 @@ +#include + +int main(int argc, char **argv) { + Q_UNUSED(argc); + Q_UNUSED(argv); + + return 0; +}