mirror of https://github.com/bsnes-emu/bsnes.git
25 lines
387 B
C++
25 lines
387 B
C++
|
namespace phoenix {
|
||
|
|
||
|
void pTabFrame::append(string text, const image& image) {
|
||
|
}
|
||
|
|
||
|
void pTabFrame::remove(unsigned selection) {
|
||
|
}
|
||
|
|
||
|
void pTabFrame::setImage(unsigned selection, const image& image) {
|
||
|
}
|
||
|
|
||
|
void pTabFrame::setSelection(unsigned selection) {
|
||
|
}
|
||
|
|
||
|
void pTabFrame::setText(unsigned selection, string text) {
|
||
|
}
|
||
|
|
||
|
void pTabFrame::constructor() {
|
||
|
}
|
||
|
|
||
|
void pTabFrame::destructor() {
|
||
|
}
|
||
|
|
||
|
}
|