mirror of
https://github.com/moveit/moveit_task_constructor.git
synced 2025-11-04 14:49:57 +08:00
- Unify move_to.launch.py and test_task_model.launch.py - Rename them to test.launch.py as they are independent of the executable - Move Node creation to the fixture constructor - Replace Task::setRobotModel(loadModel()) with Task::loadRobotModel()
14 lines
247 B
C++
14 lines
247 B
C++
#pragma once
|
|
|
|
#include <moveit/macros/class_forward.h>
|
|
#include <rclcpp/rclcpp.hpp>
|
|
|
|
namespace moveit {
|
|
namespace core {
|
|
MOVEIT_CLASS_FORWARD(RobotModel);
|
|
}
|
|
} // namespace moveit
|
|
|
|
// get a hard-coded model
|
|
moveit::core::RobotModelPtr getModel();
|