mirror of
https://github.com/rodamaral/lsnes.git
synced 2025-04-02 10:42:15 -04:00
25 lines
367 B
C++
Executable file
25 lines
367 B
C++
Executable file
bool pWidget::enabled() {
|
|
return false;
|
|
}
|
|
|
|
Geometry pWidget::minimumGeometry() {
|
|
return { 0, 0, 0, 0 };
|
|
}
|
|
|
|
void pWidget::setEnabled(bool enabled) {
|
|
}
|
|
|
|
void pWidget::setFocused() {
|
|
}
|
|
|
|
void pWidget::setFont(const string &font) {
|
|
}
|
|
|
|
void pWidget::setGeometry(const Geometry &geometry) {
|
|
}
|
|
|
|
void pWidget::setVisible(bool visible) {
|
|
}
|
|
|
|
void pWidget::constructor() {
|
|
}
|