Changeset 5624 for source/ariba/communication/EndpointDescriptor.cpp
- Timestamp:
- Aug 3, 2009, 2:29:12 PM (16 years ago)
- File:
- 
      - 1 edited
 
 - 
          
  source/ariba/communication/EndpointDescriptor.cpp (modified) (1 diff)
 
Legend:
- Unmodified
- Added
- Removed
- 
      source/ariba/communication/EndpointDescriptor.cppr5508 r5624 42 42 namespace communication { 43 43 44 const EndpointDescriptor EndpointDescriptor::UNSPECIFIED;45 44 vsznDefault(EndpointDescriptor); 46 45 47 EndpointDescriptor::EndpointDescriptor() 46 EndpointDescriptor::EndpointDescriptor(){ 48 47 } 49 48 50 EndpointDescriptor::~EndpointDescriptor() 49 EndpointDescriptor::~EndpointDescriptor(){ 51 50 52 51 } 53 52 54 53 EndpointDescriptor::EndpointDescriptor(const EndpointDescriptor& rh) : 55 endpoints(rh.endpoints) 54 endpoints(rh.endpoints){ 56 55 } 57 56 58 57 EndpointDescriptor::EndpointDescriptor(const endpoint_set& endpoints ) : 59 endpoints(endpoints) 58 endpoints(endpoints){ 60 59 } 61 60 62 EndpointDescriptor::EndpointDescriptor(const string& str) : endpoints(str) 61 EndpointDescriptor::EndpointDescriptor(const string& str) : endpoints(str){ 63 62 } 64 63 
  Note:
 See   TracChangeset
 for help on using the changeset viewer.