mirror of
https://github.com/SerenityOS/serenity.git
synced 2025-01-23 09:51:57 -05: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.
11 lines
228 B
C++
11 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:
|
|
};
|