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 : 2011-04-30 0007 * Description : Base class for altitude lookup jobs 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 #include "lookupaltitude.h" 0017 0018 namespace Digikam 0019 { 0020 0021 LookupAltitude::LookupAltitude(QObject* const parent) 0022 : QObject(parent) 0023 { 0024 } 0025 0026 LookupAltitude::~LookupAltitude() 0027 { 0028 } 0029 0030 } // namespace Digikam 0031 0032 #include "moc_lookupaltitude.cpp"