citra-canary/src/core/hle/service/http_c.h

21 lines
407 B
C
Raw Normal View History

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"
namespace Service {
namespace HTTP {
2014-12-21 19:52:10 +00:00
class HTTP_C final : public ServiceFramework<HTTP_C> {
2014-12-21 19:52:10 +00:00
public:
HTTP_C();
2014-12-21 19:52:10 +00:00
};
void InstallInterfaces(SM::ServiceManager& service_manager);
} // namespace HTTP
} // namespace Service