File indexing completed on 2025-03-09 04:54:13

0001 
0002 /*
0003    SPDX-FileCopyrightText: 2020 Sandro Knauß <knauss@kde.org>
0004 
0005    SPDX-License-Identifier: LGPL-2.0-or-later
0006 */
0007 
0008 #pragma once
0009 
0010 #include "autocryptrecipient.h"
0011 
0012 #include <QDir>
0013 #include <QHash>
0014 
0015 namespace MessageCore
0016 {
0017 class AutocryptStoragePrivate
0018 {
0019 public:
0020     AutocryptStoragePrivate();
0021     QHash<QByteArray, AutocryptRecipient::Ptr> recipients;
0022     QDir basePath;
0023 };
0024 
0025 }