/*========================================================================= Program: wxMaracas Module: $RCSfile: wxMaracasHelpDialog.h,v $ Language: C++ Date: $Date: 2009/05/14 13:54:54 $ Version: $Revision: 1.1 $ Copyright: (c) 2002, 2003 License: This software is distributed WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the above copyright notice for more information. =========================================================================*/ #ifndef __WX__HELP__DIALOG__ #define __WX__HELP__DIALOG__ #include #include /** * \brief Dialog class that show authors ... */ class wxMaracasHelpDialog : public wxDialog { public: wxMaracasHelpDialog(wxWindow* parent, int id, const char* title="Maracas Help", const wxPoint& pos=wxPoint(400, 275), const wxSize& size=wxSize(1000, 600), long style=wxDEFAULT_DIALOG_STYLE); private: }; #endif // __WX__HELP__DIALOG__ // EOF -