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