Changeset 5485 for source/ariba/communication/BaseCommunication.h
- Timestamp:
- Jul 30, 2009, 3:07:54 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/BaseCommunication.h
r5358 r5485 229 229 class LinkDescriptor { 230 230 public: 231 static const LinkDescriptor UNSPECIFIED;232 231 233 232 /// default constructor … … 235 234 localLink(LinkID::UNSPECIFIED), localLocator(NULL), 236 235 remoteLink(LinkID::UNSPECIFIED), remoteLocator(NULL), 237 remoteEndpoint(EndpointDescriptor::UNSPECIFIED), up(false) {236 remoteEndpoint(EndpointDescriptor::UNSPECIFIED), up(false), unspecified(false) { 238 237 } 239 238 … … 243 242 } 244 243 245 /// returns true if this is the UNSPECIFIED object246 244 bool isUnspecified() const { 247 return this == &UNSPECIFIED;245 return unspecified; 248 246 } 247 248 bool unspecified; 249 249 250 250 /// link identifiers … … 288 288 NetworkChangeDetection networkMonitor; 289 289 #endif 290 290 291 /// event listener 291 292 typedef set<CommunicationEvents*> EventListenerSet;
Note:
See TracChangeset
for help on using the changeset viewer.