GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
result_file_importer.h
[詳解]
1
3
4// Copyright(c) 2023-2025 Design Engineering Laboratory, Saitama University
5// Released under the MIT license
6// https://opensource.org/licenses/mit-license.php
7
8#ifndef DESIGNLAB_RESULT_FILE_IMPORTER_H_
9#define DESIGNLAB_RESULT_FILE_IMPORTER_H_
10
11#include <string>
12#include <vector>
13
15
16
17namespace designlab
18{
19
23{
24public:
32 const std::string& file_path,
33 std::vector<RobotStateNode>* node_list,
34 MapState* map_state) const;
35
36
37private:
38 bool ImportNodeList(const std::string& file_path,
39 std::vector<RobotStateNode>* node_list) const;
40
41 bool ImportMapState(const std::string& file_path, MapState* map_state) const;
42};
43
44} // namespace designlab
45
46
47#endif // DESIGNLAB_RESULT_FILE_IMPORTER_H_
マップを表すクラス.
Definition map_state.h:32
結果をファイルから読み込むクラス.
bool ImportNodeListAndMapState(const std::string &file_path, std::vector< RobotStateNode > *node_list, MapState *map_state) const
ノードリストとマップの状態をファイルから読み込む.