]> git.saurik.com Git - wxWidgets.git/blame - include/wx/msw/webviewhistoryitem_ie.h
Do not put semicolons after the definition of an inline function.
[wxWidgets.git] / include / wx / msw / webviewhistoryitem_ie.h
CommitLineData
eafdb19c 1/////////////////////////////////////////////////////////////////////////////
c13d6ac1
SL
2// Name: include/wx/msw/webviewhistoryitem.h
3// Purpose: wxWebViewHistoryItem header for MSW
eafdb19c
SL
4// Author: Steven Lamerton
5// Id: $Id$
6// Copyright: (c) 2011 Steven Lamerton
7// Licence: wxWindows licence
8/////////////////////////////////////////////////////////////////////////////
9
c13d6ac1
SL
10#ifndef _WX_MSW_WEBVIEWHISTORYITEM_H_
11#define _WX_MSW_WEBVIEWHISTORYITEM_H_
eafdb19c
SL
12
13#include "wx/setup.h"
14
9d2f31db 15#if wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
eafdb19c 16
467d261e 17class WXDLLIMPEXP_WEBVIEW wxWebViewHistoryItem
eafdb19c
SL
18{
19public:
c13d6ac1 20 wxWebViewHistoryItem(const wxString& url, const wxString& title) :
eafdb19c
SL
21 m_url(url), m_title(title) {}
22 wxString GetUrl() { return m_url; }
23 wxString GetTitle() { return m_title; }
24
25private:
26 wxString m_url, m_title;
27};
28
9d2f31db 29#endif // wxUSE_WEBVIEW && wxUSE_WEBVIEW_IE && defined(__WXMSW__)
eafdb19c 30
c13d6ac1 31#endif // _WX_MSW_WEBVIEWHISTORYITEM_H_