Ignore:
Timestamp:
Jul 30, 2009, 5:32:42 PM (15 years ago)
Author:
Christoph Mayer
Message:
 
Location:
source/ariba/communication
Files:
2 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/communication/EndpointDescriptor.cpp

    r5496 r5502  
    4545vsznDefault(EndpointDescriptor);
    4646
    47 EndpointDescriptor::EndpointDescriptor(){
     47EndpointDescriptor::EndpointDescriptor() : endpoints() {
    4848}
    4949
    50 /// destructor.
    5150EndpointDescriptor::~EndpointDescriptor() {
    5251
    5352}
    5453
     54EndpointDescriptor::EndpointDescriptor(const EndpointDescriptor& rh) :
     55        endpoints(rh.endpoints) {
     56}
     57
     58EndpointDescriptor::EndpointDescriptor(const endpoint_set& endpoints ) :
     59        endpoints(endpoints) {
     60}
     61
     62EndpointDescriptor::EndpointDescriptor(const string& str) : endpoints(str) {
     63}
    5564
    5665}} // namespace ariba, communication
  • source/ariba/communication/EndpointDescriptor.h

    r5499 r5502  
    6666
    6767        /// copy constructor
    68         EndpointDescriptor(const EndpointDescriptor& rh) :
    69                 endpoints(rh.endpoints) {
    70         }
     68        EndpointDescriptor(const EndpointDescriptor& rh);
    7169
    7270        /// construct end-points from an endpoint set
    73         EndpointDescriptor(const endpoint_set& endpoints ) :
    74                 endpoints(endpoints) {
    75         }
     71        EndpointDescriptor(const endpoint_set& endpoints );
    7672
    7773        /// construct end-points from a string
    78         EndpointDescriptor(const string& str) : endpoints(str) {
    79         }
     74        EndpointDescriptor(const string& str);
    8075
    8176        /// convert end-points to string
Note: See TracChangeset for help on using the changeset viewer.