Tyro/src/widgets/PrefPane.h

22 lines
288 B
C
Raw Normal View History

/**
* Preference Panes
*/
#ifndef TYRO_PREF_PANE_H
#define TYRO_PREF_PANE_H
2015-07-07 10:01:17 -04:00
#include "src/widgets/widget.h"
class PrefPane {
public:
PrefPane();
~PrefPane();
void Show(wxWindow *parent);
protected:
wxPreferencesEditor *pref_window = nullptr;
};
#endif /* TYRO_PREF_PANE_H */