serenity/DevTools/VisualBuilder/VBPropertiesWindow.h
Andreas Kling d6abfbdc5a LibCore: Remove ObjectPtr in favor of RefPtr
Now that CObject is fully ref-counted, just use RefPtr everywhere! :^)
2019-09-22 00:31:54 +02:00

19 lines
412 B
C++

#pragma once
#include <LibGUI/GWindow.h>
class GTableView;
class GTextBox;
class VBPropertiesWindow final : public GWindow {
C_OBJECT(VBPropertiesWindow)
public:
VBPropertiesWindow();
virtual ~VBPropertiesWindow() override;
GTableView& table_view() { return *m_table_view; }
const GTableView& table_view() const { return *m_table_view; }
private:
RefPtr<GTableView> m_table_view;
};