🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
ReportLine.hpp
浏览该文件的文档.
1
21
22#pragma once
23
24#include "AstGlobal.h"
25#include "ReportElement.hpp"
26
27#include <vector>
28
29AST_NAMESPACE_BEGIN
30
40class AST_REPORT_API ReportLine
41{
42public:
43 std::string name_;
44 std::string title_;
45
46 std::vector<ReportElement> elements_;
47};
48
51AST_NAMESPACE_END
报表数据元素定义
报表数据行
定义 ReportLine.hpp:41
std::string title_
图形样式的 Y 轴/序列标题(表格样式不适用)
定义 ReportLine.hpp:44
std::string name_
行名称(如 "Line 1")
定义 ReportLine.hpp:43