Changeset 3712 for source/ariba/communication/BaseCommunication.h
- Timestamp:
- May 26, 2009, 8:03:39 PM (16 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/BaseCommunication.h
r3690 r3712 46 46 #include <vector> 47 47 #include <iostream> 48 #include <deque>49 48 #include <algorithm> 50 49 #include <boost/foreach.hpp> … … 78 77 using std::map; 79 78 using std::vector; 80 using std::deque;81 79 using std::pair; 82 80 using std::make_pair; … … 256 254 remoteEndpoint(desc.remoteEndpoint), 257 255 linkup(desc.linkup) { 258 259 BOOST_FOREACH( Message* msg, desc.waitingmsg ){260 waitingmsg.push_back( msg );261 }262 256 } 263 257 … … 266 260 } 267 261 268 LinkID localLink;262 LinkID localLink; 269 263 const NetworkLocator* localLocator; 270 LinkID remoteLink;264 LinkID remoteLink; 271 265 const NetworkLocator* remoteLocator; 272 EndpointDescriptor remoteEndpoint; 273 274 bool linkup; 275 deque<Message*> waitingmsg; 266 EndpointDescriptor remoteEndpoint; 267 268 bool linkup; 276 269 }; 277 270
Note:
See TracChangeset
for help on using the changeset viewer.