Tyro/src/widgets/PrefPane.h

20 lines
255 B
C
Raw Normal View History

/**
* Preference Panes
*/
#ifndef TYRO_PREF_PANE_H
#define TYRO_PREF_PANE_H
class PrefPane {
public:
PrefPane();
~PrefPane();
void Show(wxWindow *parent);
protected:
wxPreferencesEditor *pref_window = nullptr;
};
#endif /* TYRO_PREF_PANE_H */