1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18
|
#ifndef SMARTCOMPLETIONSSETTINGSDLG_H
#define SMARTCOMPLETIONSSETTINGSDLG_H
#include "SmartCompletionsUI.h"
#include "SmartCompletionsConfig.h"
class SmartCompletionsSettingsDlg : public SmartCompletionsSettingsBaseDlg
{
SmartCompletionsConfig& m_config;
public:
SmartCompletionsSettingsDlg(wxWindow* parent, SmartCompletionsConfig& config);
virtual ~SmartCompletionsSettingsDlg();
protected:
virtual void OnClearStats(wxCommandEvent& event);
virtual void OnOK(wxCommandEvent& event);
};
#endif // SMARTCOMPLETIONSSETTINGSDLG_H
|