summaryrefslogtreecommitdiff
path: root/src/core/hle/service/service.h
diff options
context:
space:
mode:
authorGravatar Liam2024-02-14 23:44:05 -0500
committerGravatar Liam2024-02-17 18:08:38 -0500
commit812f23d05c77fb10407546c3e7a95447fcbea395 (patch)
treebbfb035c35ccffb6dbe0995002c2937bd94edc2d /src/core/hle/service/service.h
parentvi: move shared buffer management from nvnflinger (diff)
downloadyuzu-812f23d05c77fb10407546c3e7a95447fcbea395.tar.gz
yuzu-812f23d05c77fb10407546c3e7a95447fcbea395.tar.xz
yuzu-812f23d05c77fb10407546c3e7a95447fcbea395.zip
vi: manage resources independently of nvnflinger and refactor
Diffstat (limited to 'src/core/hle/service/service.h')
-rw-r--r--src/core/hle/service/service.h10
1 files changed, 0 insertions, 10 deletions
diff --git a/src/core/hle/service/service.h b/src/core/hle/service/service.h
index cf4a3e8be..36aae1c79 100644
--- a/src/core/hle/service/service.h
+++ b/src/core/hle/service/service.h
@@ -231,14 +231,4 @@ private:
231 } 231 }
232}; 232};
233 233
234/**
235 * The purpose of this class is to own any objects that need to be shared across the other service
236 * implementations. Will be torn down when the global system instance is shutdown.
237 */
238class Services final {
239public:
240 explicit Services(std::shared_ptr<SM::ServiceManager>& sm, Core::System& system);
241 ~Services();
242};
243
244} // namespace Service 234} // namespace Service