initial commit
Signed-off-by: Peter Siegmund <mars3142@noreply.mars3142.dev>
This commit is contained in:
30
libs/wxWidgets-3.3.1/include/wx/msw/webviewhistoryitem_ie.h
Normal file
30
libs/wxWidgets-3.3.1/include/wx/msw/webviewhistoryitem_ie.h
Normal file
@@ -0,0 +1,30 @@
|
||||
/////////////////////////////////////////////////////////////////////////////
|
||||
// Name: include/wx/msw/webviewhistoryitem.h
|
||||
// Purpose: wxWebViewHistoryItem header for MSW
|
||||
// Author: Steven Lamerton
|
||||
// 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 || wxUSE_WEBVIEW_EDGE) && 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