summaryrefslogtreecommitdiff
path: root/Libraries/LibGfx/Painter.h
diff options
context:
space:
mode:
authorAndreas Kling <kling@serenityos.org>2020-02-14 23:28:42 +0100
committerAndreas Kling <kling@serenityos.org>2020-02-14 23:33:21 +0100
commit08cae2773d7b4ab663d05fc0a89069a4943e6218 (patch)
tree2ee5dd106ceef495924a4037e738f9091532db2b /Libraries/LibGfx/Painter.h
parentd85b09893d1fc00734f20805e008bf1190295538 (diff)
downloadserenity-08cae2773d7b4ab663d05fc0a89069a4943e6218.zip
LibGfx: More work on header dependency reduction
Diffstat (limited to 'Libraries/LibGfx/Painter.h')
-rw-r--r--Libraries/LibGfx/Painter.h10
1 files changed, 2 insertions, 8 deletions
diff --git a/Libraries/LibGfx/Painter.h b/Libraries/LibGfx/Painter.h
index 1775c1b3d2..168c31e5f6 100644
--- a/Libraries/LibGfx/Painter.h
+++ b/Libraries/LibGfx/Painter.h
@@ -26,10 +26,10 @@
#pragma once
-#include <AK/String.h>
-#include <AK/Utf8View.h>
+#include <AK/Forward.h>
#include <AK/Vector.h>
#include <LibGfx/Color.h>
+#include <LibGfx/Forward.h>
#include <LibGfx/Point.h>
#include <LibGfx/Rect.h>
#include <LibGfx/Size.h>
@@ -38,12 +38,6 @@
namespace Gfx {
-class CharacterBitmap;
-class GlyphBitmap;
-class Bitmap;
-class Font;
-class Emoji;
-
class Painter {
public:
explicit Painter(Gfx::Bitmap&);