🛰️航天仿真算法库 SpaceAST 0.0.1
载入中...
搜索中...
未找到
ReportSection.hpp
浏览该文件的文档.
1
21
22#pragma once
23
24#include "AstGlobal.h"
25#include "ReportLine.hpp"
26
27#include <string>
28#include <vector>
29
30AST_NAMESPACE_BEGIN
31
40class AST_REPORT_API ReportSection
41{
42public:
43 std::string name_{};
44 std::string className_{};
45 bool nameInTitle_ = true;
46 EExpandMethod expandMethod_ = EExpandMethod::eNone;
47 int propMask_ = 2;
48 bool showIntervals_ = false;
49 int numIntervals_ = 0;
50
51 std::vector<ReportLine> lines_{};
52};
53
56AST_NAMESPACE_END
报表数据行定义
报表数据段
定义 ReportSection.hpp:41
EExpandMethod
Section 展开方式
定义 AstReportGlobal.hpp:84