GUI: Make report class destructors virtual.
This commit is contained in:
parent
58c21dde1c
commit
3884b4f997
|
@ -36,7 +36,7 @@ class CsvReport : public Report
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
CsvReport(const QString &filename, QObject * parent = 0);
|
CsvReport(const QString &filename, QObject * parent = 0);
|
||||||
~CsvReport();
|
virtual ~CsvReport();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Create the report (file).
|
* @brief Create the report (file).
|
||||||
|
|
|
@ -34,7 +34,7 @@ class TxtReport : public Report
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
TxtReport(const QString &filename, QObject * parent = 0);
|
TxtReport(const QString &filename, QObject * parent = 0);
|
||||||
~TxtReport();
|
virtual ~TxtReport();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Create the report (file).
|
* @brief Create the report (file).
|
||||||
|
|
|
@ -35,7 +35,7 @@ class XmlReport : public Report
|
||||||
{
|
{
|
||||||
public:
|
public:
|
||||||
XmlReport(const QString &filename, QObject * parent = 0);
|
XmlReport(const QString &filename, QObject * parent = 0);
|
||||||
~XmlReport();
|
virtual ~XmlReport();
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* @brief Create the report (file).
|
* @brief Create the report (file).
|
||||||
|
|
Loading…
Reference in New Issue