File indexing completed on 2024-06-23 05:15:11

0001 /*
0002     SPDX-FileCopyrightText: 2006-2007 Volker Krause <vkrause@kde.org>
0003 
0004     SPDX-License-Identifier: LGPL-2.0-or-later
0005 */
0006 
0007 #pragma once
0008 
0009 #include "transporttype.h"
0010 
0011 /**
0012  * Private class that helps to provide binary compatibility between releases.
0013  * @internal
0014  */
0015 class TransportPrivate
0016 {
0017 public:
0018     MailTransport::TransportType transportType;
0019     QString password;
0020     QString oldName;
0021     bool passwordLoaded;
0022     bool passwordDirty;
0023     bool storePasswordInFile;
0024     bool needsWalletMigration;
0025 };