GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
robot_operator_factory.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_ROBOT_OPERATOR_FACTORY_H_
9#define DESIGNLAB_ROBOT_OPERATOR_FACTORY_H_
10
11#include <memory>
12
15
16
17namespace designlab
18{
19
23{
24public:
28 static std::unique_ptr<IRobotOperator> Create(
29 const SimulationSettingRecord& setting);
30};
31
32} // namespace designlab
33
34
35#endif // DESIGNLAB_ROBOT_OPERATOR_FACTORY_H_
TargetUpdaterを生成するファクトリクラス.
static std::unique_ptr< IRobotOperator > Create(const SimulationSettingRecord &setting)
設定ファイルからTargetUpdaterを生成する.