Files
tactility/Tactility/Source/service/ServiceContext.cpp
Ken Van Hoeylandt f4f91f81d6 Service logic moved to kernel (#554)
+ fix BT service file paths
2026-07-07 22:52:19 +02:00

18 lines
433 B
C++

#include <Tactility/service/ServiceContext.h>
#include <Tactility/service/ServicePaths.h>
#include <tactility/service/service_instance.h>
namespace tt::service {
const ::ServiceManifest* ServiceContext::getManifest() const {
return service_instance_get_manifest(service_instance);
}
std::unique_ptr<ServicePaths> ServiceContext::getPaths() const {
return std::make_unique<ServicePaths>(getManifest());
}
} // namespace