File indexing completed on 2025-01-19 03:58:07
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2010-05-05 0007 * Description : Factory to create instances of Lookup backends 0008 * 0009 * SPDX-FileCopyrightText: 2010-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0010 * SPDX-FileCopyrightText: 2010-2011 by Michael G. Hansen <mike at mghansen dot de> 0011 * 0012 * SPDX-License-Identifier: GPL-2.0-or-later 0013 * 0014 * ============================================================ */ 0015 0016 #ifndef DIGIKAM_LOOKUP_FACTORY_H 0017 #define DIGIKAM_LOOKUP_FACTORY_H 0018 0019 // Local includes 0020 0021 #include "geoifacetypes.h" 0022 #include "digikam_export.h" 0023 0024 namespace Digikam 0025 { 0026 0027 class LookupAltitude; 0028 0029 class DIGIKAM_EXPORT LookupFactory 0030 { 0031 public: 0032 0033 static LookupAltitude* getAltitudeLookup(const QString& backendName, 0034 QObject* const parent); 0035 }; 0036 0037 } // namespace Digikam 0038 0039 #endif // DIGIKAM_LOOKUP_FACTORY_H