12 #include <Eigen/Dense> 20 inline void check()
const {
22 throw std::runtime_error(
"invalid optional");
28 inline Optional(
const T &value) : _value(value), _valid(
true) {}
29 inline operator bool()
const {
return _valid; }
30 inline const T &value()
const {
34 inline const T &operator*()
const {
38 inline const T *operator->()
const {
48 std::shared_ptr<Data> _data;
49 std::string _root_name;
56 void update(
const std::string &root);
58 void push(
const std::shared_ptr<const Message> &message);
59 const std::string &root()
const {
return _root_name; }
60 std::vector<std::string> list();
70 explicit Frame(
const std::string &name);
75 pose(
const std::shared_ptr<Transformer> &transformer);
76 const std::string &name()
const {
return _name; }
77 void name(
const std::string &name);
78 bool empty()
const {
return _name.empty(); }
81 inline void toString(
const Frame &v, std::string &s) { s = v.name(); }
82 inline void fromString(
Frame &v,
const std::string &s) { v.name(s); }
83 inline bool operator==(
const Frame &a,
const Frame &b) {
84 return a.name() == b.name();
86 inline bool operator!=(
const Frame &a,
const Frame &b) {
87 return a.name() != b.name();