Forward declare as much as possible

This commit is contained in:
Chocobo1 2019-05-16 13:41:29 +08:00
commit e288de7ec1
No known key found for this signature in database
GPG key ID: 210D9C873253A68C
33 changed files with 71 additions and 58 deletions

View file

@ -28,6 +28,9 @@
#include "authcontroller.h"
#include <QDateTime>
#include <QString>
#include "base/logger.h"
#include "base/preferences.h"
#include "base/utils/password.h"

View file

@ -29,10 +29,11 @@
#pragma once
#include <QHash>
#include <QString>
#include "apicontroller.h"
class QString;
class AuthController : public APIController
{
Q_OBJECT