Merge pull request #26148 from ksooo/fix-secondstotimestring-warning
[xbmc.git] / xbmc / SettingsLock.h
blobbc140f08db39ca57ac85f79bdb0de67dac8bc48a
1 /*
2 * Copyright (C) 2005-2018 Team Kodi
3 * This file is part of Kodi - https://kodi.tv
5 * SPDX-License-Identifier: GPL-2.0-or-later
6 * See LICENSES/README.md for more information.
7 */
9 #pragma once
11 namespace LOCK_LEVEL {
12 /**
13 Specifies, what Settings levels are locked for the user
14 **/
15 enum SETTINGS_LOCK
17 NONE, //settings are unlocked => user can access all settings levels
18 ALL, //all settings are locked => user always has to enter password, when entering the settings screen
19 STANDARD, //settings level standard and up are locked => user can still access the beginner levels
20 ADVANCED,
21 EXPERT