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
7#include "core/world.h"
8
9template <typename... PropertyBase>
10class WorldParser final : public ParserBase<World<PropertyBase...>>
11{
12 public:
14 std::string toString() const override;
15 bool parse();
16
17 private:
18 std::shared_ptr<World<PropertyBase...>> p_;
19};
20#endif // INCLUDE_TINYURDF_INTERNAL_WORLD_PARSER_H_
Definition parser_base.h:15
Definition property_base.h:9
Definition world_parser.h:11
bool parse()
std::string toString() const override
Base class for models enviroment defintions.
Definition world.h:32