1#ifndef INCLUDE_TINYURDF_INTERNAL_BOX_PARSER_H_
2#define INCLUDE_TINYURDF_INTERNAL_BOX_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<Box>
get()
override;
29 std::shared_ptr<Box> p_;
Parser for Box geometry, inherits from ParserBase<Box> and provides the functionality to parse the bo...
Definition box_parser.h:16
void clear() override
Definition box_parser.cc:39
bool empty() const override
Definition box_parser.cc:35
BoxParser()
Definition box_parser.cc:3
std::string toString() const override
Definition box_parser.cc:26
const char * getTypename() const override
Definition box_parser.cc:22
void parse(const tinyxml2::XMLElement *xml) override
Definition box_parser.cc:7
std::shared_ptr< Box > get() override
Definition box_parser.cc:43
bool isA(const char *name) const override
Definition box_parser.cc:18
Definition parser_base.h:15