mirror of
https://github.com/RGBCube/serenity
synced 2025-07-27 01:57:45 +00:00
AK: Add a forward declaration header
You can now #include <AK/Forward.h> to get most of the AK types as forward declarations. Header dependency explosion is one of the main contributors to compile times at the moment, so this is a step towards smaller include graphs.
This commit is contained in:
parent
8249e666fc
commit
3bbf4610d2
35 changed files with 178 additions and 53 deletions
|
@ -26,6 +26,7 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <AK/Forward.h>
|
||||
#include <AK/IPv4Address.h>
|
||||
#include <AK/Optional.h>
|
||||
#include <AK/String.h>
|
||||
|
@ -33,10 +34,6 @@
|
|||
|
||||
namespace AK {
|
||||
|
||||
class JsonArray;
|
||||
class JsonObject;
|
||||
class StringBuilder;
|
||||
|
||||
class JsonValue {
|
||||
public:
|
||||
enum class Type {
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue