2018-04-22 07:04:24 +02:00
|
|
|
// Copyright 2018 yuzu emulator team
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2018-07-19 01:43:28 +02:00
|
|
|
#pragma once
|
|
|
|
|
2018-09-12 02:46:49 +02:00
|
|
|
namespace Service::SM {
|
|
|
|
class ServiceManager;
|
|
|
|
}
|
2018-04-22 07:04:24 +02:00
|
|
|
|
2019-09-22 08:37:59 +02:00
|
|
|
namespace Core {
|
|
|
|
class System;
|
|
|
|
}
|
|
|
|
|
2018-04-23 04:02:18 +02:00
|
|
|
namespace Service::PlayReport {
|
2018-04-22 07:04:24 +02:00
|
|
|
|
2019-09-22 08:37:59 +02:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager, Core::System& system);
|
2018-04-22 07:04:24 +02:00
|
|
|
|
2018-04-23 04:02:18 +02:00
|
|
|
} // namespace Service::PlayReport
|