- Timestamp:
- Mar 26, 2014, 6:28:32 PM (11 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/transport/StreamTransport/StreamTransport.hpp
r12060 r12773 64 64 StreamConnection(boost::asio::io_service& io_service, StreamTransportPtr parent); 65 65 66 virtual ~StreamConnection() {} 66 virtual ~StreamConnection() 67 { 68 // XXX MARIO Debugging 69 std::cout << "/// ~StreamConnection(): " << this << ", SENDING: " << this->sending << ", VALID: " << this->valid << std::endl; 70 71 assert ( this->valid == false ); 72 } 67 73 68 74 /// Inherited from transport_connection … … 127 133 shared_buffer_t buffy; 128 134 135 136 // XXX Mario: Debugging 137 const int MAGIC_NUMBER; 129 138 private: 130 139 std::vector<ariba::utility::LinkID*> communication_links;
Note:
See TracChangeset
for help on using the changeset viewer.