1 | // -*- c-basic-offset:4; indent-tabs-mode:nil -*- |
2 | /* |
3 | This file is part of the KDE project |
4 | SPDX-FileCopyrightText: 2003 Alexander Kellett <lypanov@kde.org> |
5 | |
6 | SPDX-License-Identifier: LGPL-2.0-or-later |
7 | */ |
8 | |
9 | #ifndef __kbookmarksettings_p_h__ |
10 | #define __kbookmarksettings_p_h__ |
11 | |
12 | #include <kbookmarks_export.h> |
13 | |
14 | class QString; |
15 | class KBookmark; |
16 | class KBookmarkGroup; |
17 | |
18 | #define KEDITBOOKMARKS_BINARY "keditbookmarks" |
19 | |
20 | class KBOOKMARKS_EXPORT KBookmarkSettings |
21 | { |
22 | public: |
23 | bool m_advancedaddbookmark; |
24 | bool ; |
25 | static KBookmarkSettings *s_self; |
26 | static void readSettings(); |
27 | static KBookmarkSettings *self(); |
28 | }; |
29 | |
30 | #endif |
31 | |