mirror of
https://github.com/moveit/moveit_task_constructor.git
synced 2025-11-04 14:49:57 +08:00
don't export SerialContainer as pluginlib class
... it's imported as builtin
This commit is contained in:
parent
e52dc8db11
commit
957b10a7a8
@ -1,9 +1,2 @@
|
||||
<library path="libmoveit_task_constructor_core_stages">
|
||||
<class name="moveit_task_constructor/Serial Container"
|
||||
type="moveit::task_constructor::SerialContainer"
|
||||
base_class_type="moveit::task_constructor::Stage">
|
||||
<description>
|
||||
Container for a serial chain of manipulation stages.
|
||||
</description>
|
||||
</class>
|
||||
</library>
|
||||
|
||||
@ -549,7 +549,3 @@ Stage* WrapperBase::wrapped()
|
||||
}
|
||||
|
||||
} }
|
||||
|
||||
/// register plugins
|
||||
#include <pluginlib/class_list_macros.h>
|
||||
PLUGINLIB_EXPORT_CLASS(moveit::task_constructor::SerialContainer, moveit::task_constructor::Stage)
|
||||
|
||||
@ -158,7 +158,7 @@ public:
|
||||
template <class Derived>
|
||||
void addBuiltInClass(const QString& name, const QString& description)
|
||||
{
|
||||
addBuiltInClass(ROS_PACKAGE_NAME, name, description, [](){return new Derived();});
|
||||
addBuiltInClass("Built Ins", name, description, [](){return new Derived();});
|
||||
}
|
||||
|
||||
/** @brief Instantiate and return a instance of a subclass of Type using our
|
||||
|
||||
Loading…
Reference in New Issue
Block a user