Changeset 5502 for source/ariba/communication/EndpointDescriptor.cpp
- Timestamp:
- Jul 30, 2009, 5:32:42 PM (16 years ago)
- File:
-
- 1 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
Note:
See TracChangeset
for help on using the changeset viewer.