GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
DesignLab
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
14
#include "
result_file_exporter.h
"
15
16
17
namespace
designlab
18
{
19
22
class
ResultFileImporter
final
23
{
24
public
:
31
bool
ImportNodeListAndMapState
(
32
const
std::string& file_path,
33
std::vector<RobotStateNode>* node_list,
34
MapState
* map_state)
const
;
35
36
37
private
:
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_
designlab::MapState
マップを表すクラス.
Definition
map_state.h:32
designlab::ResultFileImporter
結果をファイルから読み込むクラス.
Definition
result_file_importer.h:23
designlab::ResultFileImporter::ImportNodeListAndMapState
bool ImportNodeListAndMapState(const std::string &file_path, std::vector< RobotStateNode > *node_list, MapState *map_state) const
ノードリストとマップの状態をファイルから読み込む.
Definition
result_file_importer.cpp:25
designlab
Definition
abstract_dxlib_gui.cpp:18
result_file_exporter.h
構築:
1.9.8