summaryrefslogtreecommitdiff
path: root/src/systemc/ext/channel/sc_out.hh
diff options
context:
space:
mode:
authorGabe Black <gabeblack@google.com>2018-06-07 18:23:41 -0700
committerGabe Black <gabeblack@google.com>2018-08-15 01:30:50 +0000
commit411f9077dc914c76b37104acd209a7944cbf037a (patch)
tree8890441a8498dde3a11e77d379cda0032035dc4b /src/systemc/ext/channel/sc_out.hh
parent9a457d97b543c5e1c03cf40b78ca4c53bf902642 (diff)
downloadgem5-411f9077dc914c76b37104acd209a7944cbf037a.tar.xz
systemc: Add in the deprecated binding port constructors.
These are needed by... you guessed it, the regression tests. Change-Id: Id30e71944cc7f3faca7dcb197f37938368364fcd Reviewed-on: https://gem5-review.googlesource.com/10958 Reviewed-by: Gabe Black <gabeblack@google.com> Maintainer: Gabe Black <gabeblack@google.com>
Diffstat (limited to 'src/systemc/ext/channel/sc_out.hh')
-rw-r--r--src/systemc/ext/channel/sc_out.hh16
1 files changed, 16 insertions, 0 deletions
diff --git a/src/systemc/ext/channel/sc_out.hh b/src/systemc/ext/channel/sc_out.hh
index e55a821d4..53bd25560 100644
--- a/src/systemc/ext/channel/sc_out.hh
+++ b/src/systemc/ext/channel/sc_out.hh
@@ -45,6 +45,22 @@ class sc_out : public sc_inout<T>
explicit sc_out(const char *name) : sc_inout<T>(name) {}
virtual ~sc_out() {}
+ // Deprecated binding constructors.
+ explicit sc_out(const sc_signal_inout_if<T> &interface) :
+ sc_inout<T>(interface)
+ {}
+ sc_out(const char *name, const sc_signal_inout_if<T> &interface) :
+ sc_inout<T>(name, interface)
+ {}
+ explicit sc_out(sc_port_b<sc_signal_inout_if<T> > &parent) :
+ sc_inout<T>(parent)
+ {}
+ sc_out(const char *name, sc_port_b<sc_signal_inout_if<T> > &parent) :
+ sc_inout<T>(name, parent)
+ {}
+ explicit sc_out(sc_out<T> &parent) : sc_inout<T>(parent) {}
+ sc_out(const char *name, sc_out<T> &parent) : sc_inout<T>(name, parent) {}
+
sc_out<T> &
operator = (const T &)
{