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

29 lines
380 B
C++
Raw Normal View History

namespace phoenix {
void pComboButton::append(string text) {
}
void pComboButton::modify(unsigned row, 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() {
}
}