You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
23 lines
639 B
23 lines
639 B
#ifndef __dialog_general_options_h
|
|
#define __dialog_general_options_h
|
|
|
|
#include "dialog_general_options_BoardEditor_base.h"
|
|
|
|
/***********************************************************************/
|
|
class Dialog_GeneralOptions : public DialogGeneralOptionsBoardEditor_base
|
|
/***********************************************************************/
|
|
{
|
|
private:
|
|
WinEDA_PcbFrame* m_Parent;
|
|
|
|
void init();
|
|
|
|
public:
|
|
Dialog_GeneralOptions( WinEDA_PcbFrame* parent );
|
|
~Dialog_GeneralOptions() {};
|
|
void OnOkClick( wxCommandEvent& event );
|
|
void OnCancelClick( wxCommandEvent& event );
|
|
};
|
|
|
|
|
|
#endif // __dialog_general_options_h
|