Tyro/src/widgets/PrefFrame.h

18 lines
222 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 PrefFrame {
public:
PrefFrame();
~PrefFrame();
void Show(wxWindow *parent);
protected:
wxPreferencesEditor *pref_window = nullptr;
};