]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/generic/busyinfo.h
detect and report errors in XRC specification of grid sizers
[wxWidgets.git] / include / wx / generic / busyinfo.h
index 143d7bd375f71977eb0c84b36f912d654198ea4e..b75204a2cd79613a71ca7734e718401dd12a3ad5 100644 (file)
 
 #include "wx/defs.h"
 
-#include "wx/frame.h"
-
 #if wxUSE_BUSYINFO
 
-class WXDLLIMPEXP_CORE wxFrame;
+class WXDLLIMPEXP_FWD_CORE wxFrame;
+class WXDLLIMPEXP_FWD_CORE wxWindow;
 
 //--------------------------------------------------------------------------------
 // wxBusyInfo
@@ -24,7 +23,7 @@ class WXDLLIMPEXP_CORE wxFrame;
 //                  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);
@@ -34,7 +33,7 @@ public:
 private:
     wxFrame *m_InfoFrame;
 
-    DECLARE_NO_COPY_CLASS(wxBusyInfo)
+    wxDECLARE_NO_COPY_CLASS(wxBusyInfo);
 };