26#ifndef TESSERACT_ENVIRONMENT_REMOVE_LINK_COMMAND_H
27#define TESSERACT_ENVIRONMENT_REMOVE_LINK_COMMAND_H
31#include <boost/serialization/access.hpp>
42 using Ptr = std::shared_ptr<RemoveLinkCommand>;
43 using ConstPtr = std::shared_ptr<const RemoveLinkCommand>;
65 template <
class Archive>
66 void serialize(Archive& ar,
const unsigned int version);
71#include <boost/serialization/export.hpp>
72#include <boost/serialization/tracking.hpp>
Definition: remove_link_command.h:40
RemoveLinkCommand()
Definition: remove_link_command.h:45
std::shared_ptr< const RemoveLinkCommand > ConstPtr
Definition: remove_link_command.h:43
RemoveLinkCommand(std::string link_name)
Removes a link from the environment.
Definition: remove_link_command.h:54
bool operator==(const RemoveLinkCommand &rhs) const
Definition: remove_link_command.cpp:39
std::string link_name_
Definition: remove_link_command.h:62
bool operator!=(const RemoveLinkCommand &rhs) const
Definition: remove_link_command.cpp:46
const std::string & getLinkName() const
Definition: remove_link_command.h:56
friend class boost::serialization::access
Definition: remove_link_command.h:64
void serialize(Archive &ar, const unsigned int version)
Definition: remove_link_command.cpp:49
std::shared_ptr< RemoveLinkCommand > Ptr
Definition: remove_link_command.h:42
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