mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
9fa21fa585
This gets rid of the last little piece of LibGUI knowledge in Painter.
13 lines
207 B
C++
13 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&);
|
|
};
|