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