CalendarSupport

identitymanager.h
1/*
2 SPDX-FileCopyrightText: 2004 David Faure <faure@kde.org>
3
4 SPDX-License-Identifier: GPL-2.0-or-later WITH Qt-Commercial-exception-1.0
5*/
6
7#pragma once
8
9#include "calendarsupport_export.h"
10#include <KIdentityManagementCore/IdentityManager>
11
12namespace CalendarSupport
13{
14class CALENDARSUPPORT_EXPORT IdentityManager : public KIdentityManagementCore::IdentityManager
15{
16 Q_OBJECT
17public:
18 explicit IdentityManager(QObject *parent = nullptr, const char *name = nullptr)
19 : KIdentityManagementCore::IdentityManager(true /*readonly*/, parent, name)
20 {
21 }
22
23protected:
24 void createDefaultIdentity(QString &fullName, QString &emailAddress) override;
25};
26
28}
QString name(StandardShortcut id)
This file is part of the KDE documentation.
Documentation copyright © 1996-2024 The KDE developers.
Generated on Tue Mar 26 2024 11:16:32 by doxygen 1.10.0 written by Dimitri van Heesch, © 1997-2006

KDE's Doxygen guidelines are available online.