mirror of https://github.com/bsnes-emu/bsnes.git
35 lines
568 B
C++
35 lines
568 B
C++
|
#if defined(Hiro_ListView)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
auto pListViewItem::construct() -> void {
|
||
|
}
|
||
|
|
||
|
auto pListViewItem::destruct() -> void {
|
||
|
}
|
||
|
|
||
|
auto pListViewItem::append(sListViewCell cell) -> void {
|
||
|
}
|
||
|
|
||
|
auto pListViewItem::remove(sListViewCell cell) -> void {
|
||
|
}
|
||
|
|
||
|
auto pListViewItem::setAlignment(Alignment alignment) -> void {
|
||
|
}
|
||
|
|
||
|
auto pListViewItem::setBackgroundColor(Color color) -> void {
|
||
|
}
|
||
|
|
||
|
auto pListViewItem::setFocused() -> void {
|
||
|
}
|
||
|
|
||
|
auto pListViewItem::setForegroundColor(Color color) -> void {
|
||
|
}
|
||
|
|
||
|
auto pListViewItem::setSelected(bool selected) -> void {
|
||
|
}
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|