File indexing completed on 2024-04-28 07:38:05

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2015 Gábor Péterffy <peterffy95@gmail.com>
0004 //
0005 
0006 #include "NullTinyWebBrowser.h"
0007 #include <QByteArray>
0008 
0009 namespace Marble {
0010 
0011 TinyWebBrowser::TinyWebBrowser(QWidget *parent):
0012     QWidget(parent)
0013 {
0014 }
0015 
0016 QByteArray TinyWebBrowser::userAgent(const QString &platform, const QString &plugin)
0017 {
0018     return QByteArray();
0019 }
0020 
0021 void TinyWebBrowser::setWikipediaPath(const QString &relativeUrl)
0022 {
0023 }
0024 
0025 void TinyWebBrowser::print()
0026 {
0027 }
0028 
0029 }
0030 
0031 #include "moc_NullTinyWebBrowser.cpp"