From 0f75f32ddd212576ddfa8f6cbca53558746783dc Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Fischer?= Date: Tue, 1 Oct 2019 09:18:14 +0200 Subject: [PATCH] Move main --- main.cpp => src/app/main.cpp | 2 ++ 1 file changed, 2 insertions(+) rename main.cpp => src/app/main.cpp (60%) diff --git a/main.cpp b/src/app/main.cpp similarity index 60% rename from main.cpp rename to src/app/main.cpp index 470a030..5088a36 100644 --- a/main.cpp +++ b/src/app/main.cpp @@ -1,8 +1,10 @@ #include +#include "requestmanager.h" int main(int argc, char *argv[]) { QCoreApplication a(argc, argv); + //RequestManager *reqman = new RequestManager(); return a.exec(); }