212a213,240
> sc_module &
> sc_module::operator << (sc_interface &iface)
> {
> (*this)(iface);
> return *this;
> }
>
> sc_module &
> sc_module::operator << (sc_port_base &pb)
> {
> (*this)(pb);
> return *this;
> }
>
> sc_module &
> sc_module::operator , (sc_interface &iface)
> {
> (*this)(iface);
> return *this;
> }
>
> sc_module &
> sc_module::operator , (sc_port_base &pb)
> {
> (*this)(pb);
> return *this;
> }
>