mirror of
https://github.com/mudita/MuditaOS.git
synced 2026-01-02 02:48:51 -05:00
21 lines
365 B
C++
21 lines
365 B
C++
// Copyright (c) 2017-2021, Mudita Sp. z.o.o. All rights reserved.
|
|
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md
|
|
|
|
#pragma once
|
|
|
|
namespace at
|
|
{
|
|
enum class SimInsertedStatus
|
|
{
|
|
Removed,
|
|
Inserted,
|
|
Unknown
|
|
};
|
|
|
|
enum class SimInsertedStatusEnable
|
|
{
|
|
Disable,
|
|
Enable
|
|
};
|
|
} // namespace at
|