yuzu/src/core/hle/service/srv.h

25 lines
452 B
C
Raw Normal View History

// Copyright 2014 Citra Emulator Project
2014-12-17 05:38:14 +00:00
// Licensed under GPLv2 or any later version
// Refer to the license.txt file included.
#pragma once
#include "core/hle/service/service.h"
namespace Service {
2014-04-17 01:46:05 +01:00
namespace SRV {
2014-04-17 01:46:05 +01:00
/// Interface to "srv:" service
class SRV final : public Interface {
public:
SRV();
~SRV() override;
std::string GetPortName() const override {
return "srv:";
}
};
} // namespace SRV
} // namespace Service