TinyURDF 1.0.0
Loading...
Searching...
No Matches
world_parser.h
Go to the documentation of this file.
1#ifndef INCLUDE_TINYURDF_INTERNAL_WORLD_PARSER_H_
2#define INCLUDE_TINYURDF_INTERNAL_WORLD_PARSER_H_
3
4// Copyright 2025 Wissem CHIHA
5
6#include "core/world.h"
8
9template<typename... PropertyBase>
10class WorldParser final : public ParserBase<World<PropertyBase...>>{
11public:
13 std::string toString() const override;
14 bool parse();
15private:
16 std::shared_ptr<World<PropertyBase...>> p_;
17};
18#endif // INCLUDE_TINYURDF_INTERNAL_WORLD_PARSER_H_
Definition parser_base.h:12
Definition property_base.h:8
Definition world_parser.h:10
bool parse()
std::string toString() const override
Base class for models enviroment defintions.
Definition world.h:29