~aleteoryx/muditaos

ref: e0085095340ddcac8348433ccf9ce4c994f2050e muditaos/module-services/service-cellular/src/volte/VolteAllowedListInterface.hpp -rw-r--r-- 432 bytes
e0085095 — Lefucjusz [MOS-1028] Fix corner case with input mode in Notes app 2 years ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// Copyright (c) 2017-2023, Mudita Sp. z.o.o. All rights reserved.
// For licensing, see https://github.com/mudita/MuditaOS/LICENSE.md

#pragma once

#include <string>

namespace cellular::service
{
    class VolteAllowedListInterface
    {
      public:
        virtual ~VolteAllowedListInterface() = default;

        virtual auto isVolteAllowed(const std::string &imsi) const -> bool = 0;
    };
} // namespace cellular::service