mirror of https://github.com/bsnes-emu/bsnes.git
35 lines
585 B
C++
35 lines
585 B
C++
#if defined(Hiro_ListView)
|
|
|
|
namespace hiro {
|
|
|
|
auto pListViewCell::construct() -> void {
|
|
}
|
|
|
|
auto pListViewCell::destruct() -> void {
|
|
}
|
|
|
|
auto pListViewCell::setAlignment(Alignment alignment) -> void {
|
|
}
|
|
|
|
auto pListViewCell::setBackgroundColor(Color color) -> void {
|
|
}
|
|
|
|
auto pListViewCell::setCheckable(bool checkable) -> void {
|
|
}
|
|
|
|
auto pListViewCell::setChecked(bool checked) -> void {
|
|
}
|
|
|
|
auto pListViewCell::setForegroundColor(Color color) -> void {
|
|
}
|
|
|
|
auto pListViewCell::setImage(const Image& image) -> void {
|
|
}
|
|
|
|
auto pListViewCell::setText(const string& text) -> void {
|
|
}
|
|
|
|
}
|
|
|
|
#endif
|