diff options
Diffstat (limited to 'src/systemc/utils/sc_trace_file.cc')
-rw-r--r-- | src/systemc/utils/sc_trace_file.cc | 24 |
1 files changed, 24 insertions, 0 deletions
diff --git a/src/systemc/utils/sc_trace_file.cc b/src/systemc/utils/sc_trace_file.cc index 66f7fef06..9cae922e3 100644 --- a/src/systemc/utils/sc_trace_file.cc +++ b/src/systemc/utils/sc_trace_file.cc @@ -221,6 +221,30 @@ sc_trace(sc_trace_file *, const sc_dt::sc_fxnum_fast *, const std::string &) } void +sc_trace(sc_trace_file *, const sc_event &, const std::string &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +void +sc_trace(sc_trace_file *, const sc_event *, const std::string &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +void +sc_trace(sc_trace_file *, const sc_time &, const std::string &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +void +sc_trace(sc_trace_file *, const sc_time *, const std::string &) +{ + warn("%s not implemented.\n", __PRETTY_FUNCTION__); +} + +void sc_trace(sc_trace_file *, const unsigned char &, const std::string &, int width) { |