1#ifndef TINYURDF_JOINTPARSER_H
2#define TINYURDF_JOINTPARSER_H
9#include <tinyxml2/tinyxml2.h>
10#include <loguru/loguru.hpp>
51 void parse(
const tinyxml2::XMLElement* xml)
override;
53 std::shared_ptr<Joint>
get()
override;
54 void clear()
override;
55 bool empty()
const override;
56 void print(std::ostream& os)
override;
57 bool isA(
const char* name)
override;
60 std::shared_ptr<Joint> p_;
generalized description of a joint:
Definition joint_parser.h:48
bool empty() const override
Definition joint_parser.cc:154
~JointParser()
Definition joint_parser.cc:170
bool isA(const char *name) override
Definition joint_parser.cc:166
JointParser()
Definition joint_parser.cc:3
const char * getTypename() override
Definition joint_parser.cc:139
void parse(const tinyxml2::XMLElement *xml) override
Definition joint_parser.cc:8
void print(std::ostream &os) override
Definition joint_parser.cc:159
void clear() override
Definition joint_parser.cc:149
std::shared_ptr< Joint > get() override
Definition joint_parser.cc:144
Definition parser_base.h:16