| 40 | namespace proton { |
| 41 | |
| 42 | bool connection::uninitialized() const { return ::uninitialized(pn_connection_state(pn_object())); } |
| 43 | bool connection::active() const { return ::active(pn_connection_state(pn_object())); } |
| 44 | bool connection::closed() const { return ::closed(pn_connection_state(pn_object())); } |
| 45 |