File indexing completed on 2024-04-21 03:49:51

0001 // SPDX-License-Identifier: LGPL-2.1-or-later
0002 //
0003 // SPDX-FileCopyrightText: 2009 Jens-Michael Hoffmann <jensmh@gmx.de>
0004 // SPDX-FileCopyrightText: 2012 Bernhard Beschow <bbeschow@cs.tu-berlin.de>
0005 //
0006 #include "PluginInterface.h"
0007 
0008 namespace Marble
0009 {
0010 
0011 PluginInterface::~PluginInterface()
0012 {
0013 }
0014 
0015 QString PluginInterface::aboutDataText() const
0016 {
0017     return QString();
0018 }
0019 
0020 }