Changeset 4984
- Timestamp:
- Jul 16, 2009, 10:59:38 AM (15 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/BaseCommunication.cpp
r4762 r4984 56 56 57 57 BaseCommunication::BaseCommunication() 58 : messageReceiver(NULL), network(NULL), transport(NULL) {58 : messageReceiver(NULL), network(NULL), transport(NULL), basecommStarted(false){ 59 59 } 60 60 … … 145 145 // 146 146 147 basecommStarted = true; 147 148 logging_info( "base communication started up" ); 148 149 } … … 156 157 delete network; 157 158 159 basecommStarted = false; 158 160 logging_info( "base communication stopped" ); 161 } 162 163 bool BaseCommunication::isStarted(){ 164 return basecommStarted; 159 165 } 160 166
Note:
See TracChangeset
for help on using the changeset viewer.