Changeset 9322 for source/ariba/communication
- Timestamp:
- Dec 17, 2010, 9:59:58 AM (14 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/BaseCommunication.cpp
r8620 r9322 92 92 } 93 93 94 BaseCommunication::BaseCommunication() { 95 this->transport = NULL; 96 this->started = false; 97 } 94 95 BaseCommunication::BaseCommunication() 96 : currentSeqnum( 0 ), 97 transport( NULL ), 98 messageReceiver( NULL ), 99 started( false ) 100 { 101 } 102 98 103 99 104 BaseCommunication::~BaseCommunication(){ 100 105 } 106 101 107 102 108 void BaseCommunication::start() {
Note:
See TracChangeset
for help on using the changeset viewer.