2014-12-21 19:52:10 +00: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 12:51:50 +00:00
|
|
|
namespace Service {
|
|
|
|
namespace HTTP {
|
2014-12-21 19:52:10 +00:00
|
|
|
|
2016-12-10 12:51:50 +00:00
|
|
|
class HTTP_C final : public Interface {
|
2014-12-21 19:52:10 +00:00
|
|
|
public:
|
2016-12-10 12:51:50 +00:00
|
|
|
HTTP_C();
|
2014-12-21 19:52:10 +00:00
|
|
|
|
|
|
|
std::string GetPortName() const override {
|
|
|
|
return "http:C";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-10 12:51:50 +00:00
|
|
|
} // namespace HTTP
|
|
|
|
} // namespace Service
|