#ifndef __WELCOME_DIALOG_H__ #define __WELCOME_DIALOG_H__ #include "dialogex.h" class CWelcomeDialog : public wxDialogEx { public: CWelcomeDialog() {} virtual ~CWelcomeDialog() { } bool Run(wxWindow* parent, bool force = false); protected: }; #endif //__WELCOME_DIALOG_H__