X-Git-Url: https://git.saurik.com/wxWidgets.git/blobdiff_plain/3f4fc7967b595ea8257696baff78e1866511223d..c822ad5a5e30a21ca3340af644bf79804cf7c777:/include/wx/generic/splash.h diff --git a/include/wx/generic/splash.h b/include/wx/generic/splash.h index f8e4d7c7a3..c5820ef924 100644 --- a/include/wx/generic/splash.h +++ b/include/wx/generic/splash.h @@ -16,8 +16,13 @@ #ifndef _WX_SPLASH_H_ #define _WX_SPLASH_H_ -#include "wx/frame.h" +#ifndef WX_PRECOMP +#include "wx/bitmap.h" #include "wx/timer.h" +#endif + +#include "wx/frame.h" + /* * A window for displaying a splash screen @@ -38,6 +43,8 @@ class WXDLLEXPORT wxSplashScreenWindow; class WXDLLEXPORT wxSplashScreen: public wxFrame { public: + // for RTTI macros obly + wxSplashScreen() {}; wxSplashScreen(const wxBitmap& bitmap, long splashStyle, int milliseconds, wxWindow* parent, wxWindowID id, const wxPoint& pos = wxDefaultPosition, const wxSize& size = wxDefaultSize, long style = wxSIMPLE_BORDER|wxFRAME_FLOAT_ON_PARENT); ~wxSplashScreen(); @@ -54,6 +61,7 @@ protected: int m_milliseconds; wxTimer m_timer; +DECLARE_DYNAMIC_CLASS(wxSplashScreen) DECLARE_EVENT_TABLE() };