24#include "AstCore/Command.hpp"
25#include "AstCore/VariableList.hpp"
26#include "AstScript/Interpreter.hpp"
69 mutable std::unique_ptr<Interpreter> interpreter_;
命令(虚基类),用于定义任务序列中的命令,例如初始状态、轨道机动、轨道预报等
定义 Command.hpp:42
virtual errc_t execute()=0
执行命令
研究工作台,用于参数扫描研究、优化研究、不确定性分析、区间分析等分析
定义 StudyWorkbench.hpp:40
Command * relatedCommand() const
获取关联的执行命令
定义 StudyWorkbench.hpp:57
void setRelatedCommand(Command *command)
设置关联的执行命令
定义 StudyWorkbench.hpp:60
VariableList & outputs()
获取输出变量列表
定义 StudyWorkbench.hpp:53
VariableList & inputs()
获取输入变量列表
定义 StudyWorkbench.hpp:49
Interpreter * interpreter() const
获取脚本解释器
定义 StudyWorkbench.hpp:63
变量列表
定义 VariableList.hpp:38