1#ifndef INCLUDE_TINYURDF_INTERNAL_CYLINDER_PARSER_H_
2#define INCLUDE_TINYURDF_INTERNAL_CYLINDER_PARSER_H_
18 void parse(
const tinyxml2::XMLElement* xml)
override;
19 bool isA(
const char* name)
const override;
21 std::string
toString()
const override;
22 bool empty()
const override;
23 void clear()
override;
24 std::shared_ptr<Cylinder>
get()
override;
27 std::shared_ptr<Cylinder> p_;
Parser for Cylinder geometry, inherits from ParserBase<Cylinder> and provides the functionality to pa...
Definition cylinder_parser.h:15
bool empty() const override
Definition cylinder_parser.cc:38
CylinderParser()
Definition cylinder_parser.cc:3
const char * getTypename() const override
Definition cylinder_parser.cc:26
std::shared_ptr< Cylinder > get() override
Definition cylinder_parser.cc:46
void clear() override
Definition cylinder_parser.cc:42
void parse(const tinyxml2::XMLElement *xml) override
Definition cylinder_parser.cc:7
~CylinderParser()=default
bool isA(const char *name) const override
Definition cylinder_parser.cc:22
std::string toString() const override
Definition cylinder_parser.cc:30
Definition parser_base.h:12