mirror of
https://git.eden-emu.dev/eden-emu/eden.git
synced 2025-10-20 15:17:55 +00:00
service/prepo: Move class into the cpp file
This doesn't need to be exposed within the header and be kept in the translation unit, eliminating the need to include anything within the header.
This commit is contained in:
parent
48fc06336c
commit
061dd78882
2 changed files with 40 additions and 39 deletions
|
@ -4,22 +4,12 @@
|
|||
|
||||
#pragma once
|
||||
|
||||
#include <memory>
|
||||
#include <string>
|
||||
#include "core/hle/kernel/event.h"
|
||||
#include "core/hle/service/service.h"
|
||||
namespace Service::SM {
|
||||
class ServiceManager;
|
||||
}
|
||||
|
||||
namespace Service::PlayReport {
|
||||
|
||||
class PlayReport final : public ServiceFramework<PlayReport> {
|
||||
public:
|
||||
explicit PlayReport(const char* name);
|
||||
~PlayReport() = default;
|
||||
|
||||
private:
|
||||
void SaveReportWithUser(Kernel::HLERequestContext& ctx);
|
||||
};
|
||||
|
||||
void InstallInterfaces(SM::ServiceManager& service_manager);
|
||||
|
||||
} // namespace Service::PlayReport
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue