#pragma once #include 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 m_table_view; };