File indexing completed on 2024-04-28 15:32:06

0001 /*
0002     This file is part of the KDE libraries
0003     SPDX-FileCopyrightText: 2013 Aurélien Gâteau <agateau@kde.org>
0004 
0005     SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL
0006 */
0007 #ifndef KMESSAGEBOX_P_H
0008 #define KMESSAGEBOX_P_H
0009 
0010 #include <kmessageboxdontaskagaininterface.h>
0011 #include <kmessageboxnotifyinterface.h>
0012 
0013 namespace KMessageBox
0014 {
0015 KMessageBoxDontAskAgainInterface *dontAskAgainInterface();
0016 
0017 KMessageBoxNotifyInterface *notifyInterface();
0018 
0019 bool isNotifyInterfaceLoaded();
0020 
0021 } // KMessageBox
0022 
0023 #endif /* KMESSAGEBOX_P_H */