#ifndef SETTINGS_DIALOG_H_D8635719 #define SETTINGS_DIALOG_H_D8635719 #include #ifndef WX_PRECOMP #include #endif class SettingsDialog : public wxDialog { public: SettingsDialog(); bool GetShouldCheckForUpdates() const { return should_check_for_updates_box_->GetValue(); } bool GetHybridAreas() const { return hybrid_areas_box_->GetValue(); } private: wxCheckBox* should_check_for_updates_box_; wxCheckBox* hybrid_areas_box_; }; #endif /* end of include guard: SETTINGS_DIALOG_H_D8635719 */