mirror of https://github.com/bsnes-emu/bsnes.git
15 lines
224 B
C++
15 lines
224 B
C++
|
#if defined(Hiro_ListView)
|
||
|
|
||
|
namespace hiro {
|
||
|
|
||
|
struct pListViewHeader : pObject {
|
||
|
Declare(ListViewHeader, Object)
|
||
|
|
||
|
auto append(sListViewColumn column) -> void;
|
||
|
auto remove(sListViewColumn column) -> void;
|
||
|
};
|
||
|
|
||
|
}
|
||
|
|
||
|
#endif
|