1 /////////////////////////////////////////////////////////////////////////////
2 // Name: wx/os2/msgdlg.h
3 // Purpose: wxMessageDialog class. Use generic version if no
4 // platform-specific implementation.
5 // Author: David Webster
8 // Copyright: (c) David Webster
9 // Licence: wxWindows licence
10 /////////////////////////////////////////////////////////////////////////////
12 #ifndef _WX_MSGBOXDLG_H_
13 #define _WX_MSGBOXDLG_H_
15 class WXDLLIMPEXP_CORE wxMessageDialog
: public wxMessageDialogBase
18 wxMessageDialog( wxWindow
* pParent
19 ,const wxString
& rsMessage
20 ,const wxString
& rsCaption
= wxMessageBoxCaptionStr
21 ,long lStyle
= wxOK
|wxCENTRE
22 ,const wxPoint
& WXUNUSED(rPos
) = wxDefaultPosition
24 : wxMessageDialogBase(pParent
, rsMessage
, rsCaption
, lStyle
)
31 DECLARE_DYNAMIC_CLASS(wxMessageDialog
)
32 }; // end of CLASS wxMessageDialog
34 #endif // _WX_MSGBOXDLG_H_