mirror of
				https://git.suyu.dev/suyu/suyu
				synced 2025-11-03 16:39:01 -06:00 
			
		
		
		
	service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor.
This commit is contained in:
		@@ -16,7 +16,5 @@ AppletOE::AppletOE() : ServiceFramework("appletOE") {
 | 
			
		||||
    RegisterHandlers(functions);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
AppletOE::~AppletOE() = default;
 | 
			
		||||
 | 
			
		||||
} // namespace AM
 | 
			
		||||
} // namespace Service
 | 
			
		||||
 
 | 
			
		||||
@@ -11,8 +11,8 @@ namespace AM {
 | 
			
		||||
 | 
			
		||||
class AppletOE final : public ServiceFramework<AppletOE> {
 | 
			
		||||
public:
 | 
			
		||||
    explicit AppletOE();
 | 
			
		||||
    ~AppletOE();
 | 
			
		||||
    AppletOE();
 | 
			
		||||
    ~AppletOE() = default;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
} // namespace AM
 | 
			
		||||
 
 | 
			
		||||
@@ -21,7 +21,5 @@ APM::APM() : ServiceFramework("apm") {
 | 
			
		||||
    RegisterHandlers(functions);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
APM::~APM() = default;
 | 
			
		||||
 | 
			
		||||
} // namespace APM
 | 
			
		||||
} // namespace Service
 | 
			
		||||
 
 | 
			
		||||
@@ -11,8 +11,8 @@ namespace APM {
 | 
			
		||||
 | 
			
		||||
class APM final : public ServiceFramework<APM> {
 | 
			
		||||
public:
 | 
			
		||||
    explicit APM();
 | 
			
		||||
    ~APM();
 | 
			
		||||
    APM();
 | 
			
		||||
    ~APM() = default;
 | 
			
		||||
};
 | 
			
		||||
 | 
			
		||||
/// Registers all AM services with the specified service manager.
 | 
			
		||||
 
 | 
			
		||||
@@ -92,7 +92,5 @@ LM::LM() : ServiceFramework("lm") {
 | 
			
		||||
    RegisterHandlers(functions);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
LM::~LM() = default;
 | 
			
		||||
 | 
			
		||||
} // namespace LM
 | 
			
		||||
} // namespace Service
 | 
			
		||||
 
 | 
			
		||||
@@ -14,8 +14,8 @@ namespace LM {
 | 
			
		||||
 | 
			
		||||
class LM final : public ServiceFramework<LM> {
 | 
			
		||||
public:
 | 
			
		||||
    explicit LM();
 | 
			
		||||
    ~LM();
 | 
			
		||||
    LM();
 | 
			
		||||
    ~LM() = default;
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    void Initialize(Kernel::HLERequestContext& ctx);
 | 
			
		||||
 
 | 
			
		||||
@@ -54,7 +54,5 @@ Controller::Controller() : ServiceFramework("IpcController") {
 | 
			
		||||
    RegisterHandlers(functions);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
Controller::~Controller() = default;
 | 
			
		||||
 | 
			
		||||
} // namespace SM
 | 
			
		||||
} // namespace Service
 | 
			
		||||
 
 | 
			
		||||
@@ -11,8 +11,8 @@ namespace SM {
 | 
			
		||||
 | 
			
		||||
class Controller final : public ServiceFramework<Controller> {
 | 
			
		||||
public:
 | 
			
		||||
    explicit Controller();
 | 
			
		||||
    ~Controller();
 | 
			
		||||
    Controller();
 | 
			
		||||
    ~Controller() = default;
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    void ConvertSessionToDomain(Kernel::HLERequestContext& ctx);
 | 
			
		||||
 
 | 
			
		||||
@@ -147,7 +147,5 @@ SM::SM(std::shared_ptr<ServiceManager> service_manager)
 | 
			
		||||
    RegisterHandlers(functions);
 | 
			
		||||
}
 | 
			
		||||
 | 
			
		||||
SM::~SM() = default;
 | 
			
		||||
 | 
			
		||||
} // namespace SM
 | 
			
		||||
} // namespace Service
 | 
			
		||||
 
 | 
			
		||||
@@ -23,8 +23,8 @@ namespace SM {
 | 
			
		||||
/// Interface to "sm:" service
 | 
			
		||||
class SM final : public ServiceFramework<SM> {
 | 
			
		||||
public:
 | 
			
		||||
    explicit SM(std::shared_ptr<ServiceManager> service_manager);
 | 
			
		||||
    ~SM();
 | 
			
		||||
    SM(std::shared_ptr<ServiceManager> service_manager);
 | 
			
		||||
    ~SM() = default;
 | 
			
		||||
 | 
			
		||||
private:
 | 
			
		||||
    void Initialize(Kernel::HLERequestContext& ctx);
 | 
			
		||||
 
 | 
			
		||||
		Reference in New Issue
	
	Block a user