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:
@@ -7,19 +7,18 @@
|
||||
#include <string>
|
||||
#include "core/hle/service/service.h"
|
||||
|
||||
////////////////////////////////////////////////////////////////////////////////////////////////////
|
||||
// Namespace SOC_U
|
||||
namespace Service {
|
||||
namespace SOC {
|
||||
|
||||
namespace SOC_U {
|
||||
|
||||
class Interface : public Service::Interface {
|
||||
class SOC_U final : public Interface {
|
||||
public:
|
||||
Interface();
|
||||
~Interface();
|
||||
SOC_U();
|
||||
~SOC_U();
|
||||
|
||||
std::string GetPortName() const override {
|
||||
return "soc:U";
|
||||
}
|
||||
};
|
||||
|
||||
} // namespace
|
||||
} // namespace SOC
|
||||
} // namespace Service
|
||||
|
||||
Reference in New Issue
Block a user