summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/psc/ovln/receiver.h
diff options
context:
space:
mode:
authorLiam <byteslice@airmail.cc>2024-02-22 04:25:31 +0100
committerLiam <byteslice@airmail.cc>2024-02-22 04:54:05 +0100
commite85466c1ae5c993617920f28e9ee1799591d4a9a (patch)
tree06e0610553d633da38488813ee3bf33987cf4bf3 /src/core/hle/service/psc/ovln/receiver.h
parentpsc: rewrite IPmService (diff)
downloadyuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.gz
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.bz2
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.lz
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.xz
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.tar.zst
yuzu-e85466c1ae5c993617920f28e9ee1799591d4a9a.zip
Diffstat (limited to 'src/core/hle/service/psc/ovln/receiver.h')
-rw-r--r--src/core/hle/service/psc/ovln/receiver.h16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/core/hle/service/psc/ovln/receiver.h b/src/core/hle/service/psc/ovln/receiver.h
new file mode 100644
index 000000000..c47a4ff7e
--- /dev/null
+++ b/src/core/hle/service/psc/ovln/receiver.h
@@ -0,0 +1,16 @@
+// SPDX-FileCopyrightText: Copyright 2024 yuzu Emulator Project
+// SPDX-License-Identifier: GPL-2.0-or-later
+
+#pragma once
+
+#include "core/hle/service/service.h"
+
+namespace Service::PSC {
+
+class IReceiver final : public ServiceFramework<IReceiver> {
+public:
+ explicit IReceiver(Core::System& system_);
+ ~IReceiver() override;
+};
+
+} // namespace Service::PSC