#pragma once #include "objects/annotation.h" #include "objects/base/service.h" class DEF_INST_SERVICE JointsService : public Service { AUTOGEN_PREAMBLE private: std::optional> jointWorkspace(); protected: void InitService() override; bool initialized = false; public: JointsService(); ~JointsService(); static inline std::shared_ptr Create() { return std::make_shared(); }; };