1 | /* |
---|---|
2 | This file is part of the KDE project, module kdesu. |
3 | SPDX-FileCopyrightText: 1999, 2000 Geert Jansen <jansen@kde.org> |
4 | |
5 | SPDX-License-Identifier: GPL-2.0-only |
6 | */ |
7 | |
8 | #ifndef KDESUDEFAULTS_H |
9 | #define KDESUDEFAULTS_H |
10 | |
11 | namespace KDESu |
12 | { |
13 | const int defTimeout = 120 * 60; |
14 | const int defEchoMode = 0; |
15 | const bool defKeep = false; |
16 | |
17 | } |
18 | |
19 | #endif |
20 |