26#ifndef TESSERACT_ENVIRONMENT_CHANGE_LINK_ORIGIN_COMMAND_H
27#define TESSERACT_ENVIRONMENT_CHANGE_LINK_ORIGIN_COMMAND_H
31#include <boost/serialization/access.hpp>
33#include <Eigen/Geometry>
44 EIGEN_MAKE_ALIGNED_OPERATOR_NEW
47 using Ptr = std::shared_ptr<ChangeLinkOriginCommand>;
48 using ConstPtr = std::shared_ptr<const ChangeLinkOriginCommand>;
65 Eigen::Isometry3d
origin_{ Eigen::Isometry3d::Identity() };
68 template <
class Archive>
69 void serialize(Archive& ar,
const unsigned int version);
73#include <boost/serialization/export.hpp>
74#include <boost/serialization/tracking.hpp>
Definition: change_link_origin_command.h:41
const Eigen::Isometry3d & getOrigin() const
Definition: change_link_origin_command.h:58
bool operator!=(const ChangeLinkOriginCommand &rhs) const
Definition: change_link_origin_command.cpp:52
bool operator==(const ChangeLinkOriginCommand &rhs) const
Definition: change_link_origin_command.cpp:44
Eigen::Isometry3d origin_
Definition: change_link_origin_command.h:65
std::shared_ptr< ChangeLinkOriginCommand > Ptr
Definition: change_link_origin_command.h:47
std::shared_ptr< const ChangeLinkOriginCommand > ConstPtr
Definition: change_link_origin_command.h:48
std::string link_name_
Definition: change_link_origin_command.h:64
const std::string & getLinkName() const
Definition: change_link_origin_command.h:57
friend class boost::serialization::access
Definition: change_link_origin_command.h:67
void serialize(Archive &ar, const unsigned int version)
Definition: change_link_origin_command.cpp:55
ChangeLinkOriginCommand()
Definition: change_link_origin_command.h:50
ChangeLinkOriginCommand(std::string link_name, const Eigen::Isometry3d &origin)
Definition: change_link_origin_command.h:52
This contains classes for recording operations applied to the environment for tracking changes....
#define TESSERACT_COMMON_IGNORE_WARNINGS_PUSH
Definition: macros.h:71
Definition: create_convex_hull.cpp:36
CommandType
Definition: command.h:41