mirror of
https://github.com/moveit/moveit_task_constructor.git
synced 2025-09-27 00:29:13 +08:00
add accessors for marker_ns property
This commit is contained in:
parent
ac3b56a160
commit
3176aff30f
@ -167,6 +167,14 @@ public:
|
||||
/// timeout of stage per computation
|
||||
double timeout() const { return properties().get<double>("timeout"); }
|
||||
|
||||
/** set marker namespace for solutions
|
||||
*
|
||||
* Auxiliary markers in this stage should use this namespace
|
||||
*/
|
||||
void setMarkerNS(const std::string& marker_ns) { setProperty("marker_ns", marker_ns); }
|
||||
/// marker namespace of solution markers
|
||||
const std::string& markerNS() { return properties().get<std::string>("marker_ns"); }
|
||||
|
||||
/// forwarding of properties between interface states
|
||||
void forwardProperties(const InterfaceState& source, InterfaceState& dest);
|
||||
std::set<std::string> forwardedProperties() const
|
||||
|
Loading…
Reference in New Issue
Block a user