mirror of https://github.com/bsnes-emu/bsnes.git
18 lines
320 B
C++
18 lines
320 B
C++
#if defined(Hiro_TableView)
|
|
|
|
namespace hiro {
|
|
|
|
struct pTableViewHeader : pObject {
|
|
Declare(TableViewHeader, Object)
|
|
|
|
auto append(sTableViewColumn column) -> void;
|
|
auto remove(sTableViewColumn column) -> void;
|
|
auto setVisible(bool visible) -> void override;
|
|
|
|
auto _parent() -> maybe<pTableView&>;
|
|
};
|
|
|
|
}
|
|
|
|
#endif
|