ladybird/LibGUI/GFilePicker.h
Andreas Kling eb610b309e LibGUI: Make class_name() public so you can always call it.
I found myself having to cast to GWidget* all the time when writing some
generic debugging code that just wanted to dump widget info.
2019-03-16 12:57:04 +01:00

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:
};