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