// Licence: wxWindows licence
/////////////////////////////////////////////////////////////////////////////
-#ifndef __BUSYINFO_H__
-#define __BUSYINFO_H__
+#ifndef _WX_BUSYINFO_H_
+#define _WX_BUSYINFO_H_
#include "wx/defs.h"
-#include "wx/frame.h"
-
#if wxUSE_BUSYINFO
-class WXDLLIMPEXP_CORE wxFrame;
+#include "wx/object.h"
+
+class WXDLLIMPEXP_FWD_CORE wxFrame;
+class WXDLLIMPEXP_FWD_CORE wxWindow;
//--------------------------------------------------------------------------------
// wxBusyInfo
// Can be used in exactly same way as wxBusyCursor
//--------------------------------------------------------------------------------
-class WXDLLEXPORT wxBusyInfo : public wxObject
+class WXDLLIMPEXP_CORE wxBusyInfo : public wxObject
{
public:
wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
private:
wxFrame *m_InfoFrame;
- DECLARE_NO_COPY_CLASS(wxBusyInfo)
+ wxDECLARE_NO_COPY_CLASS(wxBusyInfo);
};
-
#endif // wxUSE_BUSYINFO
-
-#endif // __BUSYINFO_H__
+#endif // _WX_BUSYINFO_H_