summaryrefslogtreecommitdiff
path: root/src/systemc/utils/report.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/utils/report.hh')
-rw-r--r--src/systemc/utils/report.hh8
1 files changed, 8 insertions, 0 deletions
diff --git a/src/systemc/utils/report.hh b/src/systemc/utils/report.hh
index e0b2e2598..ddbf62fa5 100644
--- a/src/systemc/utils/report.hh
+++ b/src/systemc/utils/report.hh
@@ -30,9 +30,11 @@
#ifndef __SYSTEMC_UTILS_REPORT_HH__
#define __SYSTEMC_UTILS_REPORT_HH__
+#include <initializer_list>
#include <map>
#include <memory>
#include <string>
+#include <utility>
#include "systemc/ext/utils/sc_report.hh"
#include "systemc/ext/utils/sc_report_handler.hh"
@@ -106,6 +108,12 @@ extern std::unique_ptr<sc_core::sc_report> globalReportCache;
extern bool reportWarningsAsErrors;
+struct DefaultReportMessages
+{
+ public:
+ DefaultReportMessages(std::initializer_list<std::pair<int, const char *>>);
+};
+
} // namespace sc_gem5
#endif // __SYSTEMC_UTILS_REPORT_HH__