File indexing completed on 2025-03-09 03:57:06
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2010-05-22 0007 * Description : metadata information keys 0008 * 0009 * SPDX-FileCopyrightText: 2009-2012 by Andi Clemens <andi dot clemens at gmail dot com> 0010 * 0011 * SPDX-License-Identifier: GPL-2.0-or-later 0012 * 0013 * ============================================================ */ 0014 0015 #ifndef DIGIKAM_METADATA_KEYS_H 0016 #define DIGIKAM_METADATA_KEYS_H 0017 0018 // Local includes 0019 0020 #include "dbkeyscollection.h" 0021 #include "parsesettings.h" 0022 0023 namespace Digikam 0024 { 0025 0026 class MetadataKeys : public DbKeysCollection 0027 { 0028 0029 public: 0030 0031 explicit MetadataKeys(); 0032 ~MetadataKeys() override {}; 0033 0034 protected: 0035 0036 QString getDbValue(const QString& key, ParseSettings& settings) override; 0037 0038 private: 0039 0040 // Disable 0041 MetadataKeys(const MetadataKeys&) = delete; 0042 MetadataKeys& operator=(const MetadataKeys&) = delete; 0043 }; 0044 0045 } // namespace Digikam 0046 0047 #endif // DIGIKAM_METADATA_KEYS_H