File indexing completed on 2023-12-03 08:28:16
0001 /* 0002 SPDX-License-Identifier: GPL-2.0-or-later 0003 0004 SPDX-FileCopyrightText: 2021 Friedrich W. H. Kossebau <kossebau@kde.org> 0005 */ 0006 0007 #ifndef PREFERENCES_H 0008 #define PREFERENCES_H 0009 0010 #include <QUrl> 0011 0012 // mock class 0013 class Preferences 0014 { 0015 private: 0016 Preferences() = default; 0017 0018 public: 0019 0020 static Preferences *self() { return &s_instance; } 0021 0022 bool disableExpansion() const { return false; } 0023 0024 private: 0025 static Preferences s_instance; 0026 }; 0027 0028 #endif