File indexing completed on 2025-01-19 12:48:28
0001 /* 0002 This file is part of the KDE project 0003 SPDX-FileCopyrightText: 2013 Dawit Alemayehu <adawit@kde.org> 0004 0005 SPDX-License-Identifier: LGPL-2.0-or-later 0006 */ 0007 0008 #ifndef KIO_GLOBALTEST_H 0009 #define KIO_GLOBALTEST_H 0010 0011 #include <QObject> 0012 0013 class GlobalTest : public QObject 0014 { 0015 Q_OBJECT 0016 0017 public: 0018 GlobalTest() 0019 { 0020 } 0021 0022 private Q_SLOTS: 0023 void testUserPermissionConversion(); 0024 void testGroupPermissionConversion(); 0025 void testOtherPermissionConversion(); 0026 }; 0027 0028 #endif