mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-22 23:50:19 +00:00
9fa21fa585
This gets rid of the last little piece of LibGUI knowledge in Painter.
12 lines
207 B
C++
12 lines
207 B
C++
#pragma once
|
|
|
|
#include <SharedGraphics/Painter.h>
|
|
|
|
class GWidget;
|
|
class GraphicsBitmap;
|
|
|
|
class GPainter : public Painter {
|
|
public:
|
|
explicit GPainter(GWidget&);
|
|
explicit GPainter(GraphicsBitmap&);
|
|
};
|