Revert "Merge remote-tracking branch 'origin/29-freecad-to-robossembler-communication' into gripper-ros2-control"

This reverts commit 6787c919e6, reversing
changes made to d3737f69b9.
This commit is contained in:
Splinter1984 2022-03-21 01:47:17 +08:00
parent 6787c919e6
commit dd9f004d60
75 changed files with 3558 additions and 1983 deletions

View file

@ -1,9 +1,7 @@
#pragma once
#include <string>
#include <geometry_msgs/msg/pose_stamped.hpp>
#include <geometry_msgs/msg/pose.hpp>
#include "scene_monitor_interfaces/msg/grasp_pose.hpp"
#include "nlohmann_json/json.hpp"
@ -21,7 +19,6 @@ Description:
Posted:
- model is posted with another
*/
enum ComponentState
{
Initialized,
@ -48,6 +45,7 @@ public:
void updateState(const ComponentState &state);
private:
std::string _frame_name;
@ -55,7 +53,6 @@ private:
geometry_msgs::msg::Pose _placement;
std::map<std::string, scene_monitor_interfaces::msg::GraspPose> _grasp_poses;
geometry_msgs::msg::Pose _current_pose;
};
}