summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/nifm/nifm.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-07-25 23:07:32 +0200
committerLioncash <mathew1800@gmail.com>2018-07-25 23:18:41 +0200
commit85ed42a1d28daf30d8115e5e9bd1b5230ec25e00 (patch)
tree145d6aa9eb85e048c3361785d5ca1148cf8ba930 /src/core/hle/service/nifm/nifm.h
parentMerge pull request #801 from lioncash/time (diff)
downloadyuzu-85ed42a1d28daf30d8115e5e9bd1b5230ec25e00.tar
yuzu-85ed42a1d28daf30d8115e5e9bd1b5230ec25e00.tar.gz
yuzu-85ed42a1d28daf30d8115e5e9bd1b5230ec25e00.tar.bz2
yuzu-85ed42a1d28daf30d8115e5e9bd1b5230ec25e00.tar.lz
yuzu-85ed42a1d28daf30d8115e5e9bd1b5230ec25e00.tar.xz
yuzu-85ed42a1d28daf30d8115e5e9bd1b5230ec25e00.tar.zst
yuzu-85ed42a1d28daf30d8115e5e9bd1b5230ec25e00.zip
Diffstat (limited to 'src/core/hle/service/nifm/nifm.h')
-rw-r--r--src/core/hle/service/nifm/nifm.h19
1 files changed, 4 insertions, 15 deletions
diff --git a/src/core/hle/service/nifm/nifm.h b/src/core/hle/service/nifm/nifm.h
index 11f1b5831..4616b3b48 100644
--- a/src/core/hle/service/nifm/nifm.h
+++ b/src/core/hle/service/nifm/nifm.h
@@ -4,24 +4,13 @@
#pragma once
-#include "core/hle/service/service.h"
+namespace Service::SM {
+class ServiceManager;
+}
namespace Service::NIFM {
-class Module final {
-public:
- class Interface : public ServiceFramework<Interface> {
- public:
- explicit Interface(std::shared_ptr<Module> module, const char* name);
-
- void CreateGeneralServiceOld(Kernel::HLERequestContext& ctx);
- void CreateGeneralService(Kernel::HLERequestContext& ctx);
-
- protected:
- std::shared_ptr<Module> module;
- };
-};
-
+/// Registers all NIFM services with the specified service manager.
void InstallInterfaces(SM::ServiceManager& service_manager);
} // namespace Service::NIFM