Tyro/src/widgets/PrefPane.h

18 lines
219 B
C
Raw Normal View History

/**
* Preference Panes
*/
2016-01-13 09:29:09 -05:00
#pragma once
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;
};