1 | /* |
---|---|
2 | This file is part of the KDE libraries |
3 | SPDX-FileCopyrightText: 2013 Aurélien Gâteau <agateau@kde.org> |
4 | |
5 | SPDX-License-Identifier: LGPL-2.0-only OR LGPL-3.0-only OR LicenseRef-KDE-Accepted-LGPL |
6 | */ |
7 | #ifndef KMESSAGEBOX_P_H |
8 | #define KMESSAGEBOX_P_H |
9 | |
10 | #include <kmessageboxdontaskagaininterface.h> |
11 | #include <kmessageboxnotifyinterface.h> |
12 | |
13 | namespace KMessageBox |
14 | { |
15 | KMessageBoxDontAskAgainInterface *dontAskAgainInterface(); |
16 | |
17 | KMessageBoxNotifyInterface *notifyInterface(); |
18 | |
19 | bool isNotifyInterfaceLoaded(); |
20 | |
21 | } // KMessageBox |
22 | |
23 | #endif /* KMESSAGEBOX_P_H */ |
24 |