From 9d09d92c56c96a82bb9a5c7c2990bee1576ff780 Mon Sep 17 00:00:00 2001 From: Lioncash Date: Mon, 13 Aug 2018 18:52:23 -0400 Subject: mm_u: Move implementation class into the cpp file Now if changes are ever made to the behavior of the class, it doesn't involve rebuilding everything that includes the mm_u header. --- src/core/hle/service/mm/mm_u.h | 15 --------------- 1 file changed, 15 deletions(-) (limited to 'src/core/hle/service/mm/mm_u.h') diff --git a/src/core/hle/service/mm/mm_u.h b/src/core/hle/service/mm/mm_u.h index 79eeedf9c..5439fa653 100644 --- a/src/core/hle/service/mm/mm_u.h +++ b/src/core/hle/service/mm/mm_u.h @@ -8,21 +8,6 @@ namespace Service::MM { -class MM_U final : public ServiceFramework { -public: - MM_U(); - ~MM_U() = default; - -private: - void Initialize(Kernel::HLERequestContext& ctx); - void SetAndWait(Kernel::HLERequestContext& ctx); - void Get(Kernel::HLERequestContext& ctx); - - u32 min{0}; - u32 max{0}; - u32 current{0}; -}; - /// Registers all MM services with the specified service manager. void InstallInterfaces(SM::ServiceManager& service_manager); -- cgit v1.2.3