aboutsummaryrefslogtreecommitdiff
path: root/src/report/report-maker.cpp
diff options
context:
space:
mode:
authorAlexandra Yates <alexandra.yates@linux.intel.com>2013-10-16 15:33:09 -0700
committerAlexandra Yates <alexandra.yates@linux.intel.com>2013-11-18 11:51:06 -0800
commit26257deee2e09c298bb672e9c16614cedc2e688c (patch)
tree934207b8bfe2a632fd842a7c757045d90901de12 /src/report/report-maker.cpp
parent79fb0d3b881c0dcc55c69af3bda7efc03837ca30 (diff)
report: report maker add title and div
Calls to add a title and add a division from report maker using report object to the generated report. Signed-off-by: Alexandra Yates <alexandra.yates@linux.intel.com>
Diffstat (limited to 'src/report/report-maker.cpp')
-rw-r--r--src/report/report-maker.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/src/report/report-maker.cpp b/src/report/report-maker.cpp
index 8eba618..ff87f1e 100644
--- a/src/report/report-maker.cpp
+++ b/src/report/report-maker.cpp
@@ -350,3 +350,21 @@ report_maker::end_hheader()
formatter->end_hheader();
}
+void
+report_maker::add_title(struct tag_attr *att_title, const char *title)
+{
+ formatter->add_title(att_title, title);
+}
+
+void
+report_maker::add_div(struct tag_attr * div_attr)
+{
+ formatter->add_div(div_attr);
+}
+
+void
+report_maker::end_div()
+{
+ formatter->end_div();
+}
+