ladybird/LibGUI/GPainter.h
Andreas Kling 9fa21fa585 LibGUI: Add a GPainter class that inherits from Painter.
This gets rid of the last little piece of LibGUI knowledge in Painter.
2019-03-28 17:19:56 +01:00

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&);
};