mirror of
https://github.com/fergalmoran/ladybird.git
synced 2026-01-01 14:18:15 +00:00
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
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&);
|
|
};
|