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:
Andreas Kling 2020-02-14 21:41:10 +01:00
commit 3bbf4610d2
Notes: sideshowbarker 2024-07-19 09:20:25 +09:00
35 changed files with 178 additions and 53 deletions

View file

@ -27,10 +27,10 @@
#include <AK/StdLibExtras.h>
#include <AK/String.h>
#include <AK/StringBuilder.h>
#include <stdarg.h>
#include <AK/Vector.h>
#ifndef KERNEL
#include <inttypes.h>
# include <inttypes.h>
#endif
#ifdef KERNEL