🛰️航天仿真算法库 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