Warning, file /frameworks/ktexteditor/autotests/src/katemodemanager_test_base.h was not indexed or was modified since last indexation (in which case cross-reference links may be missing, inaccurate or erroneous).
0001 /* 0002 SPDX-FileCopyrightText: 2021 Igor Kushnir <igorkuo@gmail.com> 0003 0004 SPDX-License-Identifier: LGPL-2.0-or-later 0005 */ 0006 0007 #ifndef KTEXTEDITOR_KATEMODEMANAGER_TEST_BASE_H 0008 #define KTEXTEDITOR_KATEMODEMANAGER_TEST_BASE_H 0009 0010 #include <QObject> 0011 0012 class KateModeManager; 0013 0014 class KateModeManagerTestBase : public QObject 0015 { 0016 Q_OBJECT 0017 protected: 0018 KateModeManagerTestBase(); 0019 0020 void wildcardsFindTestData(); 0021 void mimeTypesFindTestData(); 0022 0023 const KateModeManager *const m_modeManager; 0024 }; 0025 0026 #endif // KTEXTEDITOR_KATEMODEMANAGER_TEST_BASE_H