bsnes/higan/phoenix/reference/widget/combo-button.cpp

29 lines
394 B
C++

namespace phoenix {
void pComboButton::append(const string& text) {
}
void pComboButton::modify(unsigned row, const string& text) {
}
void pComboButton::remove(unsigned row) {
}
void pComboButton::reset() {
}
unsigned pComboButton::selection() {
return 0;
}
void pComboButton::setSelection(unsigned row) {
}
void pComboButton::constructor() {
}
void pComboButton::destructor() {
}
}