citra/src/core/hle/service/sm/srv.h
Yuri Kunde Schlesner 1eee09f364 Service: Move SRV interface to a new sm/ subdirectory
This will contain the implementation of the sm (Service Manager) system
module.
2017-06-06 02:57:04 -07:00

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