summaryrefslogtreecommitdiff
path: root/src/systemc/ext/channel/sc_signal.hh
diff options
context:
space:
mode:
Diffstat (limited to 'src/systemc/ext/channel/sc_signal.hh')
-rw-r--r--src/systemc/ext/channel/sc_signal.hh16
1 files changed, 0 insertions, 16 deletions
diff --git a/src/systemc/ext/channel/sc_signal.hh b/src/systemc/ext/channel/sc_signal.hh
index bbe2d0116..7c0183763 100644
--- a/src/systemc/ext/channel/sc_signal.hh
+++ b/src/systemc/ext/channel/sc_signal.hh
@@ -45,22 +45,6 @@ namespace sc_core
{
class sc_port_base;
-class sc_trace_file;
-
-// Nonstandard
-// Despite having a warning "FOR INTERNAL USE ONLY!" in all caps above this
-// class definition in the Accellera implementation, it appears in their
-// examples and test programs, and so we need to have it here as well.
-struct sc_trace_params
-{
- sc_trace_file *tf;
- std::string name;
-
- sc_trace_params(sc_trace_file *tf, const std::string &name) :
- tf(tf), name(name)
- {}
-};
-typedef std::vector<sc_trace_params *> sc_trace_params_vec;
template <class T, sc_writer_policy WRITER_POLICY=SC_ONE_WRITER>
class sc_signal : public sc_signal_inout_if<T>,