1#ifndef INCLUDE_TINYURDF_GEOMETRY_BOX_PARSER_H_
2#define INCLUDE_TINYURDF_GEOMETRY_BOX_PARSER_H_
19 void parse(
const tinyxml2::XMLElement* xml)
override;
20 bool isA(
const char* name)
override;
22 void print(std::ostream& os)
override;
23 bool empty()
const override;
24 void clear()
override;
25 std::shared_ptr<Box>
get()
override;
28 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:36
const char * getTypename() override
Definition box_parser.cc:22
bool empty() const override
Definition box_parser.cc:32
void print(std::ostream &os) override
Definition box_parser.cc:26
BoxParser()
Definition box_parser.cc:3
bool isA(const char *name) override
Definition box_parser.cc:18
void parse(const tinyxml2::XMLElement *xml) override
Definition box_parser.cc:7
std::shared_ptr< Box > get() override
Definition box_parser.cc:40
Definition parser_base.h:16