~aleteoryx/muditaos

ref: e97a6a7ac770dffc3a7207237f63d417a6efa5ce muditaos/module-audio/Audio/AudioPlatform.hpp -rw-r--r-- 379 bytes
e97a6a7a — Lefucjusz [BH-2085] Commit Harmony database migration 1 year, 3 months ago
                                                                                
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
// 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

#include "AudioDeviceFactory.hpp"

#include <memory>

namespace audio
{
    class AudioPlatform
    {
      public:
        static std::unique_ptr<AudioDeviceFactory> GetDeviceFactory();
    };

}; // namespace audio