summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/prepo/prepo.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-12 02:46:49 +0200
committerLioncash <mathew1800@gmail.com>2018-09-12 02:49:01 +0200
commit325c259fc590d54924a4b60ba61b0c4078c7ea66 (patch)
tree4f480f9b0f852e17339b68c3aecdabde1dcaf4a0 /src/core/hle/service/prepo/prepo.h
parentMerge pull request #1291 from lioncash/default (diff)
downloadyuzu-325c259fc590d54924a4b60ba61b0c4078c7ea66.tar
yuzu-325c259fc590d54924a4b60ba61b0c4078c7ea66.tar.gz
yuzu-325c259fc590d54924a4b60ba61b0c4078c7ea66.tar.bz2
yuzu-325c259fc590d54924a4b60ba61b0c4078c7ea66.tar.lz
yuzu-325c259fc590d54924a4b60ba61b0c4078c7ea66.tar.xz
yuzu-325c259fc590d54924a4b60ba61b0c4078c7ea66.tar.zst
yuzu-325c259fc590d54924a4b60ba61b0c4078c7ea66.zip
Diffstat (limited to 'src/core/hle/service/prepo/prepo.h')
-rw-r--r--src/core/hle/service/prepo/prepo.h16
1 files changed, 3 insertions, 13 deletions
diff --git a/src/core/hle/service/prepo/prepo.h b/src/core/hle/service/prepo/prepo.h
index f5a6aba6d..0e7b01331 100644
--- a/src/core/hle/service/prepo/prepo.h
+++ b/src/core/hle/service/prepo/prepo.h
@@ -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