1#ifndef INCLUDE_TINYURDF_INTERNAL_SPHERE_PARSER_H_
2#define INCLUDE_TINYURDF_INTERNAL_SPHERE_PARSER_H_
13 void parse(
const tinyxml2::XMLElement* xml)
override;
14 bool isA(
const char* name)
const override;
16 std::string
toString()
const override;
17 bool empty()
const override;
18 void clear()
override;
19 std::shared_ptr<Sphere>
get()
override;
22 std::shared_ptr<Sphere> p_;
Definition parser_base.h:12
Definition sphere_parser.h:10
std::string toString() const override
Definition sphere_parser.cc:27
bool isA(const char *name) const override
Definition sphere_parser.cc:19
SphereParser()
Definition sphere_parser.cc:3
const char * getTypename() const override
Definition sphere_parser.cc:23
void clear() override
Definition sphere_parser.cc:41
bool empty() const override
Definition sphere_parser.cc:37
std::shared_ptr< Sphere > get() override
Definition sphere_parser.cc:45
void parse(const tinyxml2::XMLElement *xml) override
Definition sphere_parser.cc:7