diff options
| author | Lioncash <mathew1800@gmail.com> | 2018-09-02 11:36:43 -0400 |
|---|---|---|
| committer | Lioncash <mathew1800@gmail.com> | 2018-09-02 11:45:26 -0400 |
| commit | 41cd766438d045bc7cacfc37246a90106fb6e89e (patch) | |
| tree | 135b3e8b12ffd53a54a4476d26929706fe720bc1 /src/core/hle/service/ssl/ssl.h | |
| parent | c69dc5acf9faf3817337dfd5883fd3ef55a73326 (diff) | |
ssl: Move SSL class to cpp file
This isn't required to be visible to anything outside of the main source
file, and will eliminate needing to rebuild anything else including the
header if the SSL class needs to be changed in the future.
Diffstat (limited to 'src/core/hle/service/ssl/ssl.h')
| -rw-r--r-- | src/core/hle/service/ssl/ssl.h | 14 |
1 files changed, 3 insertions, 11 deletions
diff --git a/src/core/hle/service/ssl/ssl.h b/src/core/hle/service/ssl/ssl.h index 8fef13022..5cb04c3b9 100644 --- a/src/core/hle/service/ssl/ssl.h +++ b/src/core/hle/service/ssl/ssl.h @@ -4,20 +4,12 @@ #pragma once -#include "core/hle/service/service.h" +namespace Service::SM { +class ServiceManager; +} namespace Service::SSL { -class SSL final : public ServiceFramework<SSL> { -public: - explicit SSL(); - ~SSL() = default; - -private: - void CreateContext(Kernel::HLERequestContext& ctx); - void SetInterfaceVersion(Kernel::HLERequestContext& ctx); -}; - /// Registers all SSL services with the specified service manager. void InstallInterfaces(SM::ServiceManager& service_manager); |
