2014-12-21 20:52:10 +01:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
|
|
|
// Licensed under GPLv2 or any later version
|
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
|
|
|
#pragma once
|
|
|
|
|
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2016-12-10 13:51:50 +01:00
|
|
|
namespace Service {
|
|
|
|
namespace HTTP {
|
2014-12-21 20:52:10 +01:00
|
|
|
|
2018-07-22 01:48:57 +02:00
|
|
|
class HTTP_C final : public ServiceFramework<HTTP_C> {
|
2014-12-21 20:52:10 +01:00
|
|
|
public:
|
2016-12-10 13:51:50 +01:00
|
|
|
HTTP_C();
|
2014-12-21 20:52:10 +01:00
|
|
|
};
|
|
|
|
|
2018-07-22 01:48:57 +02:00
|
|
|
void InstallInterfaces(SM::ServiceManager& service_manager);
|
|
|
|
|
2016-12-10 13:51:50 +01:00
|
|
|
} // namespace HTTP
|
|
|
|
} // namespace Service
|