mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2025-01-26 19:22:30 -05:00
04b9dc2d30
Things were getting a little crowded in the project root, so this patch moves the Lib*/ directories into Libraries/.
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&);
|
|
};
|