1 /////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/msw/webviewhistoryitem.h
3 // Purpose: wxWebViewHistoryItem header for MSW
4 // Author: Steven Lamerton
6 // Copyright: (c) 2011 Steven Lamerton
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_MSW_WEBVIEWHISTORYITEM_H_
11 #define _WX_MSW_WEBVIEWHISTORYITEM_H_
15 #if wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
17 class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
20 wxWebViewHistoryItem(const wxString
& url
, const wxString
& title
) :
21 m_url(url
), m_title(title
) {}
22 wxString
GetUrl() { return m_url
; }
23 wxString
GetTitle() { return m_title
; }
26 wxString m_url
, m_title
;
29 #endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
31 #endif // _WX_MSW_WEBVIEWHISTORYITEM_H_