Warning, file /frameworks/kdbusaddons/src/kdeinitinterface.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).

0001 /*
0002     This file is part of libkdbusaddons
0003 
0004     SPDX-FileCopyrightText: 2013 David Faure <faure@kde.org>
0005 
0006     SPDX-License-Identifier: LGPL-2.1-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0007 */
0008 
0009 #ifndef KDEINIT_IFACE_H
0010 #define KDEINIT_IFACE_H
0011 
0012 #include <kdbusaddons_export.h>
0013 
0014 /**
0015  * The KDEInitInterface namespace contains:
0016  *
0017  * <ul>
0018  *   <li>A function to ensure kdeinit and klauncher are running.
0019  *      This is necessary before making D-Bus calls to org.kde.klauncher5.
0020  * </ul>
0021  *
0022  * @since 5.0
0023  */
0024 namespace KDEInitInterface
0025 {
0026 KDBUSADDONS_EXPORT void ensureKdeinitRunning();
0027 }
0028 
0029 #endif