diff options
Diffstat (limited to 'src/systemc/ext')
-rw-r--r-- | src/systemc/ext/core/sc_port.hh | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/src/systemc/ext/core/sc_port.hh b/src/systemc/ext/core/sc_port.hh index dfcae95da..6f7c67655 100644 --- a/src/systemc/ext/core/sc_port.hh +++ b/src/systemc/ext/core/sc_port.hh @@ -52,6 +52,11 @@ class sc_port_base : public sc_object {} void warn_unimpl(const char *func) const; + + protected: + // Implementation defined, but depended on by the tests. + void bind(sc_interface &); + void bind(sc_port_base &); }; template <class IF> |