mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-04-18 06:00:30 -04:00
14 lines
276 B
C++
14 lines
276 B
C++
// Copyright (c) 2017-2024, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/blob/master/LICENSE.md
|
|
|
|
#pragma once
|
|
namespace app
|
|
{
|
|
enum class SwitchReason
|
|
{
|
|
SwitchRequest,
|
|
PhoneLock,
|
|
Popup
|
|
};
|
|
}
|