btm_debug.h 439 B

123456789101112131415161718192021
  1. // SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
  2. // SPDX-License-Identifier: GPL-3.0-or-later
  3. #pragma once
  4. #include "core/hle/service/cmif_types.h"
  5. #include "core/hle/service/service.h"
  6. namespace Core {
  7. class System;
  8. }
  9. namespace Service::BTM {
  10. class IBtmDebug final : public ServiceFramework<IBtmDebug> {
  11. public:
  12. explicit IBtmDebug(Core::System& system_);
  13. ~IBtmDebug() override;
  14. };
  15. } // namespace Service::BTM