File indexing completed on 2025-03-09 03:57:14

0001 /* ============================================================
0002  *
0003  * This file is a part of digiKam project
0004  * https://www.digikam.org
0005  *
0006  * Date        : 2010-05-12
0007  * Description : Abstract backend class for reverse geocoding.
0008  *
0009  * SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com>
0010  * SPDX-FileCopyrightText: 2010      by Michael G. Hansen <mike at mghansen dot de>
0011  * SPDX-FileCopyrightText: 2010      by Gabriel Voicu <ping dot gabi at gmail dot com>
0012  *
0013  * SPDX-License-Identifier: GPL-2.0-or-later
0014  *
0015  * ============================================================ */
0016 
0017 #include "backend-rg.h"
0018 
0019 namespace Digikam
0020 {
0021 
0022 /**
0023  * @class RGBackend
0024  *
0025  * @brief This class is a base class for Open Street Map and Geonames backends.
0026  */
0027 
0028 /**
0029  * Constructor
0030  */
0031 RGBackend::RGBackend(QObject* const parent)
0032     : QObject(parent)
0033 {
0034 }
0035 
0036 /**
0037  * Destructor
0038  */
0039 RGBackend::~RGBackend()
0040 {
0041 }
0042 
0043 QString RGBackend::getErrorMessage()
0044 {
0045     return QString();
0046 }
0047 
0048 QString RGBackend::backendName()
0049 {
0050     return QString();
0051 }
0052 
0053 } // namespace Digikam
0054 
0055 #include "moc_backend-rg.cpp"