suyu/src/core/hle/service/sm/srv.h

26 lines
468 B
C
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2014-12-17 06:38:14 +01:00
// 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 {
2014-04-17 02:46:05 +02:00
/// Interface to "srv:" service
class SRV final : public Interface {
public:
SRV();
~SRV() override;
std::string GetPortName() const override {
return "srv:";
}
};
} // namespace SM
} // namespace Service