mirror of https://github.com/bsnes-emu/bsnes.git
26 lines
357 B
C++
26 lines
357 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() {
|
||
|
}
|
||
|
|
||
|
}
|