1#ifndef INCLUDE_TINYURDF_INTERNAL_CYLINDER_PARSER_H_
2#define INCLUDE_TINYURDF_INTERNAL_CYLINDER_PARSER_H_
19 void parse(
const tinyxml2::XMLElement* xml)
override;
20 bool isA(
const char* name)
const override;
22 std::string
toString()
const override;
23 bool empty()
const override;
24 void clear()
override;
25 std::shared_ptr<Cylinder>
get()
override;
29 std::shared_ptr<Cylinder> p_;
Parser for Cylinder geometry, inherits from ParserBase<Cylinder> and provides the functionality to pa...
Definition cylinder_parser.h:16
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:15