old-hiro/cocoa/layout.hpp

16 lines
266 B
C++
Raw Normal View History

2016-05-15 10:45:15 +00:00
#if defined(Hiro_Layout)
namespace hiro {
struct pLayout : pSizable {
Declare(Layout, Sizable);
auto setEnabled(bool enabled) -> void override;
auto setFont(const Font& font) -> void override;
auto setVisible(bool visible) -> void override;
};
}
#endif