1 /////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/msw/webviewhistoryitem.h
3 // Purpose: wxWebViewHistoryItem header for MSW
4 // Author: Steven Lamerton
5 // Copyright: (c) 2011 Steven Lamerton
6 // Licence: wxWindows licence
7 /////////////////////////////////////////////////////////////////////////////
9 #ifndef _WX_MSW_WEBVIEWHISTORYITEM_H_
10 #define _WX_MSW_WEBVIEWHISTORYITEM_H_
14 #if wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
16 class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
19 wxWebViewHistoryItem(const wxString
& url
, const wxString
& title
) :
20 m_url(url
), m_title(title
) {}
21 wxString
GetUrl() { return m_url
; }
22 wxString
GetTitle() { return m_title
; }
25 wxString m_url
, m_title
;
28 #endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
30 #endif // _WX_MSW_WEBVIEWHISTORYITEM_H_