%% options %% header #include #include #ifdef __BORLANDC__ #pragma hdrstop #endif #ifndef WX_PRECOMP #include #endif /** Base class for dialogs. */ class DkWxDialog : public wxDialog { public: /** Constructor. @param parent Parent frame or dialog. @param wid Windows ID. @param title Dialog box title. */ DkWxDialog( wxWindow *parent, wxWindowID wid, wxChar const *title ); }; %% module #include "DkWxDialog.h" $!trace-include DkWxDialog::DkWxDialog( wxWindow *parent, wxWindowID wid, wxChar const *title ) : wxDialog( parent, wid, title, wxDefaultPosition, wxDefaultSize, wxDEFAULT_DIALOG_STYLE ) { }