2018-10-21 20:48:58 +00:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#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
|