Akonadi Contacts

recipientseditormanager.h
1 /*
2  SPDX-FileCopyrightText: 2017-2023 Laurent Montel <[email protected]>
3 
4  SPDX-License-Identifier: LGPL-2.0-or-later
5 */
6 
7 #pragma once
8 
9 #include "akonadi-contact_export.h"
10 #include <QObject>
11 
12 namespace Akonadi
13 {
14 class EmailAddressSelectionModel;
15 }
16 
17 namespace Akonadi
18 {
19 class AKONADI_CONTACT_EXPORT RecipientsEditorManager : public QObject
20 {
21  Q_OBJECT
22 public:
23  explicit RecipientsEditorManager(QObject *parent = nullptr);
24  ~RecipientsEditorManager() override;
25 
26  static RecipientsEditorManager *self();
27  Q_REQUIRED_RESULT Akonadi::EmailAddressSelectionModel *model();
28 
29 private:
30  Akonadi::EmailAddressSelectionModel *mModel = nullptr;
31 };
32 }
This file is part of the KDE documentation.
Documentation copyright © 1996-2023 The KDE developers.
Generated on Sat Apr 1 2023 04:09:05 by doxygen 1.8.17 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.