mirror of
https://github.com/dolphin-emu/dolphin.git
synced 2025-07-30 01:29:42 -06:00
wxWidgets3: update to svn r70933
This commit is contained in:
31
Externals/wxWidgets3/include/wx/msw/webviewhistoryitem_ie.h
vendored
Normal file
31
Externals/wxWidgets3/include/wx/msw/webviewhistoryitem_ie.h
vendored
Normal file
@ -0,0 +1,31 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: include/wx/msw/webviewhistoryitem.h
|
||||
// Purpose: wxWebViewHistoryItem header for MSW
|
||||
// Author: Steven Lamerton
|
||||
// Id: $Id: webviewhistoryitem_ie.h 69074 2011-09-12 18:35:39Z SJL $
|
||||
// Copyright: (c) 2011 Steven Lamerton
|
||||
// Licence: wxWindows licence
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
|
||||
#ifndef _WX_MSW_WEBVIEWHISTORYITEM_H_
|
||||
#define _WX_MSW_WEBVIEWHISTORYITEM_H_
|
||||
|
||||
#include "wx/setup.h"
|
||||
|
||||
#if wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
|
||||
|
||||
class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
|
||||
{
|
||||
public:
|
||||
wxWebViewHistoryItem(const wxString& url, const wxString& title) :
|
||||
m_url(url), m_title(title) {}
|
||||
wxString GetUrl() { return m_url; }
|
||||
wxString GetTitle() { return m_title; }
|
||||
|
||||
private:
|
||||
wxString m_url, m_title;
|
||||
};
|
||||
|
||||
#endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
|
||||
|
||||
#endif // _WX_MSW_WEBVIEWHISTORYITEM_H_
|
Reference in New Issue
Block a user