File indexing completed on 2024-11-24 04:42:18

0001 /*
0002    This file is part of kalarmcal library, which provides access to KAlarm
0003    calendar data.
0004 
0005    SPDX-FileCopyrightText: 2018-2022 David Jarvie <djarvie@kde.org>
0006 
0007    SPDX-License-Identifier: LGPL-2.0-or-later
0008 */
0009 
0010 #pragma once
0011 
0012 #include <QObject>
0013 
0014 class KAEventTest : public QObject
0015 {
0016     Q_OBJECT
0017 private Q_SLOTS:
0018     void constructors();
0019     void flags();
0020     void fromKCalEvent();
0021     void toKCalEvent();
0022     void setNextOccurrence();
0023 };
0024