mirror of
https://github.com/LadybirdBrowser/ladybird.git
synced 2024-11-11 01:06:01 +03:00
eb610b309e
I found myself having to cast to GWidget* all the time when writing some generic debugging code that just wanted to dump widget info.
12 lines
228 B
C++
12 lines
228 B
C++
#include <LibGUI/GWindow.h>
|
|
|
|
class GFilePicker final : public GWindow {
|
|
public:
|
|
GFilePicker();
|
|
virtual ~GFilePicker() override;
|
|
|
|
virtual const char* class_name() const override { return "GFilePicker"; }
|
|
|
|
private:
|
|
};
|