]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/busyinfo.h
improved conditional compilation test (added wxUSE_POSTSCRIPT)
[wxWidgets.git] / include / wx / busyinfo.h
index be907a80cdfc913979d0e5b54e9dffe5fd1056a3..0050bfa08a5e3303cedf9c8f1636811f91b7678b 100644 (file)
 
 #if wxUSE_BUSYINFO
 
-class wxInfoFrame : public wxFrame
+class WXDLLEXPORT wxInfoFrame : public wxFrame
 {
-    public:
-        wxInfoFrame(wxWindow *parent, const wxString& message);
+public:
+    wxInfoFrame(wxWindow *parent, const wxString& message);
 };
 
 
@@ -37,14 +37,15 @@ class wxInfoFrame : public wxFrame
 //                  Can be used in exactly same way as wxBusyCursor
 //--------------------------------------------------------------------------------
 
-class wxBusyInfo : public wxObject
+class WXDLLEXPORT wxBusyInfo : public wxObject
 {
-    public:
-        wxBusyInfo(const wxString& message);
-        ~wxBusyInfo();
+public:
+    wxBusyInfo(const wxString& message, wxWindow *parent = NULL);
 
-    private:
-        wxInfoFrame *m_InfoFrame;
+    virtual ~wxBusyInfo();
+
+private:
+    wxInfoFrame *m_InfoFrame;
 };