service: Clean up apm/lm/applet_oe/controller/sm ctor/dtor.
This commit is contained in:
parent
16fb1c8fe7
commit
ad073846bc
10 changed files with 10 additions and 20 deletions
|
@ -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);
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue