]> git.saurik.com Git - wxWidgets.git/blobdiff - include/wx/busyinfo.h
Changed char* to wxChar*
[wxWidgets.git] / include / wx / busyinfo.h
index be907a80cdfc913979d0e5b54e9dffe5fd1056a3..b5a94ba6dea3eaf77b22cb948d4c3327b55af312 100644 (file)
@@ -10,8 +10,8 @@
 #ifndef __INFOWIN_H__
 #define __INFOWIN_H__
 
-#ifdef __GNUG__
-#pragma interface
+#if defined(__GNUG__) && !defined(__APPLE__)
+#pragma interface "busyinfo.h"
 #endif
 
 #include "wx/wxprec.h"
 
 #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;
 };