File indexing completed on 2024-05-19 05:01:24

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