GaitGeneration by Graph Search
読み取り中…
検索中…
一致する文字列を見つけられません
boot_mode.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_BOOT_MODE_H_
9#define DESIGNLAB_BOOT_MODE_H_
10
11namespace designlab {
12
16enum class BootMode : int {
17 kSimulation = 0,
18 kViewer,
22};
23
24} // namespace designlab
25
26#endif // DESIGNLAB_BOOT_MODE_H_
BootMode
起動モードを表す列挙型.
Definition boot_mode.h:16
@ kRobotControl
ロボットコントロールモード.
@ kSimulation
シミュレーションモード.
@ kDisplayModel
ディスプレイモード.
@ kViewer
ビューワーモード.
@ kResultViewer
リザルトビューワーモード.