AK: Remove manual forward declarations with <AK/Forward.h>

This commit is contained in:
Andreas Kling 2020-02-15 00:12:31 +01:00
parent a368cf7d51
commit 6a3cd11a80
Notes: sideshowbarker 2024-07-19 09:20:01 +09:00
6 changed files with 0 additions and 27 deletions

View File

@ -29,10 +29,6 @@
#include <AK/NonnullOwnPtrVector.h>
#include <LibCore/LocalSocket.h>
namespace AK {
class JsonObject;
}
class RemoteObjectGraphModel;
class RemoteObject;

View File

@ -32,10 +32,6 @@
#include <LibAudio/Buffer.h>
#include <LibCore/File.h>
namespace AK {
class ByteBuffer;
}
namespace Audio {
class Buffer;

View File

@ -31,10 +31,6 @@
#include <LibGfx/Bitmap.h>
#include <LibGUI/Icon.h>
namespace AK {
class JsonValue;
}
namespace GUI {
class Variant {

View File

@ -32,10 +32,6 @@
#include <AK/RefCounted.h>
#include <AK/WeakPtr.h>
namespace AK {
class SharedBuffer;
}
namespace Protocol {
class Client;

View File

@ -30,10 +30,6 @@
#include <LibIPC/ClientConnection.h>
#include <ProtocolServer/ProtocolServerEndpoint.h>
namespace AK {
class SharedBuffer;
}
class Download;
class PSClientConnection final : public IPC::ClientConnection<ProtocolServerEndpoint>

View File

@ -32,13 +32,6 @@
#include <LibCore/Notifier.h>
#include <LibCore/Object.h>
namespace AK {
class JsonObject;
}
namespace Core {
class ConfigFile;
}
class Service final : public Core::Object {
C_OBJECT(Service)