bsnes/hiro/gtk/sizable.hpp

11 lines
179 B
C++

namespace hiro {
struct pSizable : pObject {
Declare(Sizable, Object)
virtual auto minimumSize() const -> Size;
virtual auto setGeometry(Geometry geometry) -> void;
};
}