mirror of https://github.com/bsnes-emu/bsnes.git
20 lines
241 B
C++
20 lines
241 B
C++
|
#if defined(Hiro_Sizable)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
auto pSizable::construct() -> void {
|
||
|
}
|
||
|
|
||
|
auto pSizable::destruct() -> void {
|
||
|
}
|
||
|
|
||
|
auto pSizable::minimumSize() const -> Size {
|
||
|
}
|
||
|
|
||
|
auto pSizable::setGeometry(Geometry geometry) -> void {
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|