GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
DesignLab
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
16
namespace
designlab
{
17
22
class
MapFileImporter
final {
23
public
:
27
[[nodiscard]]
nostd::expected<MapState, std::string>
ImportMap
(
28
const
std::string& file_path)
const
noexcept
;
29
};
30
31
}
// namespace designlab
32
33
#endif
// DESIGNLAB_MAP_FILE_IMPORTER_H_
designlab::MapFileImporter
マップを csv に出力したものを読み込むクラス.
Definition
map_file_importer.h:22
designlab::MapFileImporter::ImportMap
nostd::expected< MapState, std::string > ImportMap(const std::string &file_path) const noexcept
マップを csv に出力したものを読み込む.
Definition
map_file_importer.cpp:21
designlab::nostd::expected
自作の expected クラス
Definition
my_expected.h:46
map_state.h
my_expected.h
designlab
Definition
abstract_dxlib_gui.cpp:18
構築:
1.9.8