summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/systemc/ext/utils/sc_report_handler.hh3
-rw-r--r--src/systemc/utils/sc_report_handler.cc15
2 files changed, 18 insertions, 0 deletions
diff --git a/src/systemc/ext/utils/sc_report_handler.hh b/src/systemc/ext/utils/sc_report_handler.hh
index 6101e2b72..aa0b1c99d 100644
--- a/src/systemc/ext/utils/sc_report_handler.hh
+++ b/src/systemc/ext/utils/sc_report_handler.hh
@@ -95,6 +95,9 @@ class sc_report_handler
static sc_actions force(sc_actions);
static sc_actions force();
+ static sc_actions set_catch_actions(sc_actions);
+ static sc_actions get_catch_actions();
+
static void set_handler(sc_report_handler_proc);
static void default_handler(const sc_report &, const sc_actions &);
static sc_actions get_new_action_id();
diff --git a/src/systemc/utils/sc_report_handler.cc b/src/systemc/utils/sc_report_handler.cc
index 319851b2b..0faf995f5 100644
--- a/src/systemc/utils/sc_report_handler.cc
+++ b/src/systemc/utils/sc_report_handler.cc
@@ -161,6 +161,21 @@ sc_report_handler::force()
}
+sc_actions
+sc_report_handler::set_catch_actions(sc_actions)
+{
+ warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+ return SC_UNSPECIFIED;
+}
+
+sc_actions
+sc_report_handler::get_catch_actions()
+{
+ warn("%s not implemented.\n", __PRETTY_FUNCTION__);
+ return SC_UNSPECIFIED;
+}
+
+
void
sc_report_handler::set_handler(sc_report_handler_proc)
{