File indexing completed on 2024-04-28 05:27:05

0001 /*
0002  * kstart.h Part of the KDE project.
0003  *
0004  * SPDX-FileCopyrightText: 1997-2000 Matthias Ettrich <ettrich@kde.org>
0005  * SPDX-FileCopyrightText: David Faure <faure@kde.org>
0006  *
0007  * SPDX-License-Identifier: GPL-2.0-only OR GPL-3.0-only OR LicenseRef-KDE-Accepted-GPL
0008  *
0009  */
0010 
0011 #ifndef KSTART_H
0012 #define KSTART_H
0013 
0014 #include <QObject>
0015 
0016 class KStart : public QObject
0017 {
0018     Q_OBJECT
0019 
0020 public:
0021     KStart();
0022 };
0023 
0024 #endif