mirror of
https://git.suyu.dev/suyu/suyu
synced 2024-11-05 14:57:53 +00:00
18 lines
414 B
C++
18 lines
414 B
C++
|
// Copyright 2018 yuzu emulator team
|
||
|
// Licensed under GPLv2 or any later version
|
||
|
// Refer to the license.txt file included.
|
||
|
|
||
|
#include "core/hle/service/ssl/ssl.h"
|
||
|
|
||
|
namespace Service {
|
||
|
namespace SSL {
|
||
|
|
||
|
SSL::SSL() : ServiceFramework("ssl") {}
|
||
|
|
||
|
void InstallInterfaces(SM::ServiceManager& service_manager) {
|
||
|
std::make_shared<SSL>()->InstallAsService(service_manager);
|
||
|
}
|
||
|
|
||
|
} // namespace SSL
|
||
|
} // namespace Service
|