1 /////////////////////////////////////////////////////////////////////////////
2 // Name: include/wx/osx/webviewhistoryitem.h
3 // Purpose: wxWebViewHistoryItem header for OSX
4 // Author: Steven Lamerton
6 // Copyright: (c) 2011 Steven Lamerton
7 // Licence: wxWindows licence
8 /////////////////////////////////////////////////////////////////////////////
10 #ifndef _WX_OSX_WEBVIEWHISTORYITEM_H_
11 #define _WX_OSX_WEBVIEWHISTORYITEM_H_
15 #if wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT && (defined(__WXOSX_COCOA__) \
16 || defined(__WXOSX_CARBON__))
18 #include "wx/osx/core/objcid.h"
20 class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
23 wxWebViewHistoryItem(const wxString
& url
, const wxString
& title
) :
24 m_url(url
), m_title(title
) {}
25 wxString
GetUrl() { return m_url
; }
26 wxString
GetTitle() { return m_title
; }
28 friend class wxWebViewWebKit
;
31 wxString m_url
, m_title
;
35 #endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_WEBKIT
37 #endif // _WX_OSX_WEBVIEWHISTORYITEM_H_