Changeset 5502 for source/ariba/communication
- Timestamp:
- Jul 30, 2009, 5:32:42 PM (15 years ago)
- Location:
- source/ariba/communication
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/communication/EndpointDescriptor.cpp
r5496 r5502 45 45 vsznDefault(EndpointDescriptor); 46 46 47 EndpointDescriptor::EndpointDescriptor() {47 EndpointDescriptor::EndpointDescriptor() : endpoints() { 48 48 } 49 49 50 /// destructor.51 50 EndpointDescriptor::~EndpointDescriptor() { 52 51 53 52 } 54 53 54 EndpointDescriptor::EndpointDescriptor(const EndpointDescriptor& rh) : 55 endpoints(rh.endpoints) { 56 } 57 58 EndpointDescriptor::EndpointDescriptor(const endpoint_set& endpoints ) : 59 endpoints(endpoints) { 60 } 61 62 EndpointDescriptor::EndpointDescriptor(const string& str) : endpoints(str) { 63 } 55 64 56 65 }} // namespace ariba, communication -
source/ariba/communication/EndpointDescriptor.h
r5499 r5502 66 66 67 67 /// copy constructor 68 EndpointDescriptor(const EndpointDescriptor& rh) : 69 endpoints(rh.endpoints) { 70 } 68 EndpointDescriptor(const EndpointDescriptor& rh); 71 69 72 70 /// construct end-points from an endpoint set 73 EndpointDescriptor(const endpoint_set& endpoints ) : 74 endpoints(endpoints) { 75 } 71 EndpointDescriptor(const endpoint_set& endpoints ); 76 72 77 73 /// construct end-points from a string 78 EndpointDescriptor(const string& str) : endpoints(str) { 79 } 74 EndpointDescriptor(const string& str); 80 75 81 76 /// convert end-points to string
Note:
See TracChangeset
for help on using the changeset viewer.