Akonadi Contacts

selectaddressbookdialog.h
1 /*
2  SPDX-FileCopyrightText: 2013-2023 Laurent Montel <[email protected]>
3  SPDX-License-Identifier: LGPL-2.0-or-later
4  */
5 
6 #pragma once
7 
8 #include "akonadi-contact_export.h"
9 #include <Akonadi/CollectionDialog>
10 
11 #include <memory>
12 
13 namespace Akonadi
14 {
15 class SelectAddressBookDialogPrivate;
16 /**
17  * @brief The SelectAddressBookDialog class This class allows to select addressbook where saving contacts
18  * @since 5.1
19  */
20 class AKONADI_CONTACT_EXPORT SelectAddressBookDialog : public Akonadi::CollectionDialog
21 {
22  Q_OBJECT
23 public:
24  explicit SelectAddressBookDialog(QWidget *parent = nullptr);
25  ~SelectAddressBookDialog() override;
26 
27 private:
28  std::unique_ptr<SelectAddressBookDialogPrivate> const d;
29 };
30 }
The SelectAddressBookDialog class This class allows to select addressbook where saving contacts.
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.