#ifndef ROWHOLDER_HPP #define ROWHOLDER_HPP #include "tierrow.hpp" #include #include #include #include class RowHolder : public QFrame { Q_OBJECT public: using IdType = uint32_t; RowHolder(); ~RowHolder(); void addRow(TierRow* row); private: QVBoxLayout* _layout; }; #endif // ROWHOLDER_HPP