File indexing completed on 2024-04-21 04:42:38

0001 /*
0002     SPDX-FileCopyrightText: 2011 Dawit Alemayehu <adawit@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.1-or-later
0005 */
0006 
0007 #ifndef WEBHISTORYINTERFACE_H
0008 #define WEBHISTORYINTERFACE_H
0009 
0010 
0011 #include <QWebHistoryInterface>
0012 
0013 
0014 class WebHistoryInterface : public QWebHistoryInterface
0015 {
0016 public:
0017     explicit WebHistoryInterface(QObject* parent = nullptr);
0018     void addHistoryEntry (const QString & url) override;
0019     bool historyContains (const QString & url) const override;
0020 };
0021 
0022 #endif //WEBHISTORYINTERFACE_H