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:
Lioncash 2016-12-10 07:51:50 -05:00 committed by linkmauve
parent 0713074841
commit b0ebdfae34
50 changed files with 408 additions and 499 deletions

View file

@ -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