2014-04-16 00:28:03 -03:00
|
|
|
// Copyright 2014 Citra Emulator Project
|
2014-12-17 02:38:14 -03:00
|
|
|
// Licensed under GPLv2 or any later version
|
2014-04-16 00:28:03 -03:00
|
|
|
// Refer to the license.txt file included.
|
|
|
|
|
2016-12-15 17:40:51 -03:00
|
|
|
#pragma once
|
|
|
|
|
2014-04-16 00:28:03 -03:00
|
|
|
#include "core/hle/service/service.h"
|
|
|
|
|
2016-12-10 09:51:50 -03:00
|
|
|
namespace Service {
|
2014-04-16 21:46:05 -03:00
|
|
|
namespace SRV {
|
2014-04-16 00:28:03 -03:00
|
|
|
|
2014-04-16 21:46:05 -03:00
|
|
|
/// Interface to "srv:" service
|
2016-12-10 09:51:50 -03:00
|
|
|
class SRV final : public Interface {
|
2014-04-16 00:28:03 -03:00
|
|
|
public:
|
2016-12-10 09:51:50 -03:00
|
|
|
SRV();
|
|
|
|
~SRV() override;
|
2014-04-16 00:28:03 -03:00
|
|
|
|
2014-10-26 01:56:13 -03:00
|
|
|
std::string GetPortName() const override {
|
2014-04-16 00:28:03 -03:00
|
|
|
return "srv:";
|
|
|
|
}
|
|
|
|
};
|
|
|
|
|
2016-12-10 09:51:50 -03:00
|
|
|
} // namespace SRV
|
|
|
|
} // namespace Service
|