File indexing completed on 2025-01-19 03:56:00
0001 /* ============================================================ 0002 * 0003 * This file is a part of digiKam project 0004 * https://www.digikam.org 0005 * 0006 * Date : 2006-09-15 0007 * Description : Exiv2 library interface. 0008 * Shared data container. 0009 * 0010 * SPDX-FileCopyrightText: 2006-2024 by Gilles Caulier <caulier dot gilles at gmail dot com> 0011 * SPDX-FileCopyrightText: 2006-2013 by Marcel Wiesweg <marcel dot wiesweg at gmx dot de> 0012 * 0013 * SPDX-License-Identifier: GPL-2.0-or-later 0014 * 0015 * ============================================================ */ 0016 0017 #include "metaengine_data_p.h" 0018 0019 // Local includes 0020 0021 #include "metaengine_p.h" 0022 0023 namespace Digikam 0024 { 0025 0026 MetaEngineData::MetaEngineData() 0027 : d(nullptr) 0028 { 0029 } 0030 0031 MetaEngineData::MetaEngineData(const MetaEngineData& other) 0032 : d(other.d) 0033 { 0034 } 0035 0036 MetaEngineData::~MetaEngineData() 0037 { 0038 } 0039 0040 MetaEngineData& MetaEngineData::operator=(const MetaEngineData& other) 0041 { 0042 d = other.d; 0043 0044 return *this; 0045 } 0046 0047 } // namespace Digikam