File indexing completed on 2024-04-28 05:45:58

0001 /*
0002     SPDX-FileCopyrightText: 2010 Volker Lanz <vl@fidra.de>
0003     SPDX-FileCopyrightText: 2015 Chris Campbell <c.j.campbell@ed.ac.uk>
0004     SPDX-FileCopyrightText: 2016 Andrius Štikonas <andrius@stikonas.eu>
0005 
0006     SPDX-License-Identifier: GPL-3.0-or-later
0007 */
0008 
0009 #ifndef KPMCORE_HTMLREPORT_H
0010 #define KPMCORE_HTMLREPORT_H
0011 
0012 #include "util/libpartitionmanagerexport.h"
0013 
0014 class QString;
0015 
0016 class LIBKPMCORE_EXPORT HtmlReport
0017 {
0018 public:
0019     HtmlReport() {}
0020 
0021 public:
0022     static QString tableLine(const QString& label, const QString contents);
0023     QString header();
0024     QString footer();
0025 };
0026 
0027 #endif