port.hh (14190:74c7a99c8b8c) port.hh (14191:a8e387a87a28)
1/*
2 * Copyright (c) 2011-2012,2015,2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 133 unchanged lines hidden (view full) ---

142 peer.unbind();
143
144 // Connect the new binding.
145 peer.bind(*this);
146 bind(peer);
147 }
148};
149
1/*
2 * Copyright (c) 2011-2012,2015,2017 ARM Limited
3 * All rights reserved
4 *
5 * The license below extends only to copyright in the software and shall
6 * not be construed as granting a license to any other intellectual
7 * property including but not limited to intellectual property relating
8 * to a hardware implementation of the functionality of the software

--- 133 unchanged lines hidden (view full) ---

142 peer.unbind();
143
144 // Connect the new binding.
145 peer.bind(*this);
146 bind(peer);
147 }
148};
149
150static inline std::ostream &
151operator << (std::ostream &os, const Port &port)
152{
153 os << port.name();
154 return os;
155}
156
150#endif //__SIM_PORT_HH__
157#endif //__SIM_PORT_HH__