summaryrefslogtreecommitdiffstats
path: root/src/core/hle/service/ssl/ssl.h
diff options
context:
space:
mode:
authorLioncash <mathew1800@gmail.com>2018-09-02 17:36:43 +0200
committerLioncash <mathew1800@gmail.com>2018-09-02 17:45:26 +0200
commit41cd766438d045bc7cacfc37246a90106fb6e89e (patch)
tree135b3e8b12ffd53a54a4476d26929706fe720bc1 /src/core/hle/service/ssl/ssl.h
parentMerge pull request #1196 from FearlessTobi/ccache-consistency (diff)
downloadyuzu-41cd766438d045bc7cacfc37246a90106fb6e89e.tar
yuzu-41cd766438d045bc7cacfc37246a90106fb6e89e.tar.gz
yuzu-41cd766438d045bc7cacfc37246a90106fb6e89e.tar.bz2
yuzu-41cd766438d045bc7cacfc37246a90106fb6e89e.tar.lz
yuzu-41cd766438d045bc7cacfc37246a90106fb6e89e.tar.xz
yuzu-41cd766438d045bc7cacfc37246a90106fb6e89e.tar.zst
yuzu-41cd766438d045bc7cacfc37246a90106fb6e89e.zip
Diffstat (limited to '')
-rw-r--r--src/core/hle/service/ssl/ssl.h14
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);