mirror of
https://github.com/yuzu-emu/yuzu-android.git
synced 2025-07-05 16:17:52 -05:00
Add all services to the Service namespace
Previously there was a split where some of the services were in the Service namespace and others were not.
This commit is contained in:
@ -6,19 +6,17 @@
|
||||
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace NS_S
|
||||
namespace Service {
|
||||
namespace NS {
|
||||
|
||||
namespace NS_S {
|
||||
|
||||
/// Interface to "NS:S" service
|
||||
class Interface : public Service::Interface {
|
||||
class NS_S final : public Interface {
|
||||
public:
|
||||
Interface();
|
||||
NS_S();
|
||||
|
||||
std::string GetPortName() const override {
|
||||
return "ns:s";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace
|
||||
} // namespace NS
|
||||
} // namespace Service
|
||||
|
Reference in New Issue
Block a user