summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/btm/btm_user.h
blob: d9ee5db4550cfe551679f2516a2d4af4022f9a50 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
// SPDX-License-Identifier: GPL-3.0-or-later

#pragma once

#include "core/hle/service/cmif_types.h"
#include "core/hle/service/service.h"

namespace Core {
class System;
}

namespace Service::BTM {
class IBtmUserCore;

class IBtmUser final : public ServiceFramework<IBtmUser> {
public:
    explicit IBtmUser(Core::System& system_);
    ~IBtmUser() override;

private:
    Result GetCore(OutInterface<IBtmUserCore> out_interface);
};

} // namespace Service::BTM