Changeset 2473 for source/ariba/utility/types
- Timestamp:
- Feb 23, 2009, 2:21:49 PM (16 years ago)
- Location:
- source/ariba/utility/types
- Files:
-
- 2 edited
Legend:
- Unmodified
- Added
- Removed
-
source/ariba/utility/types/ServiceID.cpp
r2472 r2473 24 24 // PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE ARIBA PROJECT OR 25 25 // CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, 26 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,26 // EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, 27 27 // PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR 28 28 // PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF … … 50 50 } 51 51 52 ServiceID::ServiceID(u nsigned int _id) : id( _id ){52 ServiceID::ServiceID(uint32_t _id) : id( _id ){ 53 53 } 54 54 … … 57 57 58 58 ServiceID::~ServiceID() { 59 } 60 61 ServiceID& ServiceID::operator=(const ServiceID &rh) { 62 id = rh.id; 63 return *this; 59 64 } 60 65 -
source/ariba/utility/types/ServiceID.h
r2472 r2473 72 72 bool operator<(const ServiceID& rh) const; 73 73 bool operator!=(const ServiceID& rh) const; 74 ServiceID& operator=(const ServiceID &rh); 74 75 75 76 inline bool isUnspecified() const {
Note:
See TracChangeset
for help on using the changeset viewer.