Services/HLE: Convert the http:C service to the new service framework.

This commit is contained in:
B3n30
2018-07-21 18:48:57 -05:00
committed by Subv
parent 78685065cf
commit 28124c053a
3 changed files with 69 additions and 65 deletions

View File

@@ -9,14 +9,12 @@
namespace Service {
namespace HTTP {
class HTTP_C final : public Interface {
class HTTP_C final : public ServiceFramework<HTTP_C> {
public:
HTTP_C();
std::string GetPortName() const override {
return "http:C";
}
};
void InstallInterfaces(SM::ServiceManager& service_manager);
} // namespace HTTP
} // namespace Service