mirror of https://github.com/bsnes-emu/bsnes.git
19 lines
342 B
C++
19 lines
342 B
C++
#if defined(Hiro_ListView)
|
|
|
|
namespace hiro {
|
|
|
|
struct pListViewHeader : pObject {
|
|
Declare(ListViewHeader, Object)
|
|
|
|
auto append(sListViewColumn column) -> void;
|
|
auto remove(sListViewColumn column) -> void;
|
|
auto setVisible(bool visible) -> void override;
|
|
|
|
auto _parent() -> maybe<pListView&>;
|
|
auto _setState() -> void;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|