GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
map_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_MAP_FILE_IMPORTER_H_
9#define DESIGNLAB_MAP_FILE_IMPORTER_H_
10
11#include <string>
12
13#include "map_state.h"
14#include "my_expected.h"
15
16namespace designlab {
17
22class MapFileImporter final {
23 public:
28 const std::string& file_path) const noexcept;
29};
30
31} // namespace designlab
32
33#endif // DESIGNLAB_MAP_FILE_IMPORTER_H_
マップを csv に出力したものを読み込むクラス.
nostd::expected< MapState, std::string > ImportMap(const std::string &file_path) const noexcept
マップを csv に出力したものを読み込む.
自作の expected クラス
Definition my_expected.h:46