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