File indexing completed on 2024-04-14 03:49:47

0001 /*
0002     This file is part of the KDE Baloo project.
0003     SPDX-FileCopyrightText: 2019 Stefan BrĂ¼ns <stefan.bruens@rwth-aachen.de>
0004 
0005     SPDX-License-Identifier: LGPL-2.1-or-later
0006 */
0007 
0008 #ifndef BALOO_PROPERTYDATA_H
0009 #define BALOO_PROPERTYDATA_H
0010 
0011 #include <KFileMetaData/Properties>
0012 #include <QJsonObject>
0013 
0014 namespace Baloo
0015 {
0016 
0017 const QJsonObject propertyMapToJson(const KFileMetaData::PropertyMultiMap& properties);
0018 const KFileMetaData::PropertyMultiMap jsonToPropertyMap(const QJsonObject& properties);
0019 
0020 } // namespace Baloo
0021 
0022 #endif // BALOO_PROPERTYDATA_H