summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/btm/btm_debug.h
blob: bf4f7e14fdde1799bc4c82b0fe350011b069aa23 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
// 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 IBtmDebug final : public ServiceFramework<IBtmDebug> {
public:
    explicit IBtmDebug(Core::System& system_);
    ~IBtmDebug() override;
};

} // namespace Service::BTM