mirror of
https://github.com/citra-emu/citra.git
synced 2024-11-17 14:30:06 +00:00
1eee09f364
This will contain the implementation of the sm (Service Manager) system module.
26 lines
468 B
C++
26 lines
468 B
C++
// Copyright 2014 Citra Emulator Project
|
|
// Licensed under GPLv2 or any later version
|
|
// Refer to the license.txt file included.
|
|
|
|
#pragma once
|
|
|
|
#include <string>
|
|
#include "core/hle/service/service.h"
|
|
|
|
namespace Service {
|
|
namespace SM {
|
|
|
|
/// Interface to "srv:" service
|
|
class SRV final : public Interface {
|
|
public:
|
|
SRV();
|
|
~SRV() override;
|
|
|
|
std::string GetPortName() const override {
|
|
return "srv:";
|
|
}
|
|
};
|
|
|
|
} // namespace SM
|
|
} // namespace Service
|