/* Copyright (C) 2017-2020, Dirk Krause SPDX-License-Identifier: BSD-3-Clause */ /* WARNING: This file was generated by the dkct program (see http://dktools.sourceforge.net/ for details). Changes you make here will be lost if dkct is run again! You should modify the original source and run dkct on it. Original source: DkWxDialog.cpt */ /** @file DkWxDialog.h Header file for the DkWxDialog module. */ #ifndef DKWXDIALOG_H_INCLUDED /** Avoid multiple inclusions. */ #define DKWXDIALOG_H_INCLUDED 1 #line 7 "DkWxDialog.cpt" #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 ); }; #endif