File indexing completed on 2025-01-05 04:58:19
0001 /* 0002 SPDX-FileCopyrightText: 2017-2024 Laurent Montel <montel@kde.org> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #pragma once 0008 0009 namespace Akonadi 0010 { 0011 class Session; 0012 } 0013 0014 namespace PimCommon 0015 { 0016 /** 0017 * @brief The AddresseeLineEditAkonadi class 0018 * @author Laurent Montel <montel@kde.org> 0019 */ 0020 class AddresseeLineEditAkonadi 0021 { 0022 public: 0023 explicit AddresseeLineEditAkonadi(); 0024 ~AddresseeLineEditAkonadi(); 0025 0026 Akonadi::Session *akonadiSession() const; 0027 0028 private: 0029 mutable Akonadi::Session *m_akonadiSession = nullptr; 0030 }; 0031 }