Refactor am services

Use the new service naming scheme.
Remove redundant casts and template specifiers in response.Push.
This commit is contained in:
Billy Laws
2020-02-19 20:35:54 +00:00
committed by ◱ PixelyIon
parent 616222a6db
commit 4af37c4367
39 changed files with 714 additions and 562 deletions

View File

@ -0,0 +1,6 @@
#include "IDebugFunctions.h"
namespace skyline::service::am {
IDebugFunctions::IDebugFunctions(const DeviceState &state, ServiceManager &manager) : BaseService(state, manager, Service::am_IDebugFunctions, "am:IDebugFunctions", {
}) {}
}