Include sanitation

This commit is contained in:
luisangelsm
2026-03-13 11:06:25 +01:00
parent 221ce60760
commit f0943995c6
112 changed files with 252 additions and 179 deletions

View File

@ -4,7 +4,6 @@
#include "yacreader_libraries.h"
#include "yacreader_http_session.h"
#include "template.h"
#include "../static.h"
#include "comic_db.h"
@ -14,8 +13,6 @@
#include "QsLog.h"
#include <typeinfo>
using stefanfrings::HttpRequest;
using stefanfrings::HttpResponse;

View File

@ -4,18 +4,13 @@
#include "yacreader_libraries.h"
#include "yacreader_http_session.h"
#include "template.h"
#include "../static.h"
#include "comic_db.h"
#include "comic.h"
#include "qnaturalsorting.h"
#include "QsLog.h"
#include <typeinfo>
using stefanfrings::HttpRequest;
using stefanfrings::HttpResponse;

View File

@ -1,7 +1,8 @@
#include "comicdownloadinfocontroller_v2.h"
#include <QUrl>
#include "db_helper.h"
#include "yacreader_libraries.h"
#include "comic_db.h"

View File

@ -8,8 +8,6 @@
#include "yacreader_libraries.h"
#include "yacreader_server_data_helper.h"
#include <ctime>
using stefanfrings::HttpRequest;
using stefanfrings::HttpResponse;
using namespace std;

View File

@ -1,8 +1,5 @@
#include "errorcontroller_v2.h"
#include "template.h"
#include "../static.h"
using stefanfrings::HttpRequest;
using stefanfrings::HttpResponse;

View File

@ -14,7 +14,6 @@
#include "QsLog.h"
#include <chrono>
#include <ctime>
using stefanfrings::HttpRequest;
using stefanfrings::HttpResponse;

View File

@ -1,12 +1,12 @@
#include "folderinfocontroller_v2.h"
#include <QUrl>
#include "db_helper.h" //get libraries
#include "folder.h"
#include "comic_db.h"
#include "template.h"
#include "../static.h"
using stefanfrings::HttpRequest;
using stefanfrings::HttpResponse;

View File

@ -1,13 +1,11 @@
#include "readinglistinfocontroller_v2.h"
#include <QUrl>
#include "db_helper.h"
#include "folder.h"
#include "comic_db.h"
#include "template.h"
#include "../static.h"
using stefanfrings::HttpRequest;
using stefanfrings::HttpResponse;

View File

@ -1,13 +1,11 @@
#include "taginfocontroller_v2.h"
#include <QUrl>
#include "db_helper.h"
#include "folder.h"
#include "comic_db.h"
#include "template.h"
#include "../static.h"
using stefanfrings::HttpRequest;
using stefanfrings::HttpResponse;

View File

@ -1,13 +1,10 @@
#include "updatecomiccontroller_v2.h"
#include "db_helper.h"
#include "yacreader_libraries.h"
#include <QUrl>
#include "template.h"
#include "../static.h"
#include "db_helper.h"
#include "comic_db.h"
#include "comic.h"
#include "QsLog.h"

View File

@ -1,5 +1,7 @@
#include "yacreader_http_session_store.h"
#include <QMutexLocker>
#include "yacreader_http_session.h"
YACReaderHttpSessionStore::YACReaderHttpSessionStore(QObject *parent)

View File

@ -1,8 +1,9 @@
#ifndef YACREADERHTTPSESSIONSTORE_H
#define YACREADERHTTPSESSIONSTORE_H
#include <QMap>
#include <QMutex>
#include <QObject>
#include <QtCore>
class YACReaderHttpSession;