2022-04-23 08:59:50 +00:00
|
|
|
// SPDX-FileCopyrightText: Copyright 2018 yuzu Emulator Project
|
|
|
|
// SPDX-License-Identifier: GPL-2.0-or-later
|
2018-10-21 20:48:58 +00:00
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2020-11-26 20:19:08 +00:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-10-21 20:48:58 +00:00
|
|
|
namespace Service::AM {
|
|
|
|
|
|
|
|
class TCAP final : public ServiceFramework<TCAP> {
|
|
|
|
public:
|
2020-11-26 20:19:08 +00:00
|
|
|
explicit TCAP(Core::System& system_);
|
2018-10-21 20:48:58 +00:00
|
|
|
~TCAP() override;
|
|
|
|
};
|
|
|
|
|
|
|
|
} // namespace Service::AM
|