Changeset 9323


Ignore:
Timestamp:
Dec 17, 2010, 10:08:24 AM (13 years ago)
Author:
bless
Message:
  • constructor now uses initializers
File:
1 edited

Legend:

Unmodified
Added
Removed
  • source/ariba/utility/transport/tcpip/tcpip.cpp

    r8609 r9323  
    4646}
    4747
    48 tcpip::tcpip( uint16_t port ) {
    49         this->done = false;
    50         this->running = false;
    51         this->port = port;
    52         this->listener = NULL;
     48tcpip::tcpip( uint16_t port ) :
     49        done ( false ),
     50        running ( false ),
     51        port( port ),
     52        tpreceivethread ( NULL ),
     53        tpthread ( NULL ),
     54        listener ( NULL ) {
    5355}
    5456
Note: See TracChangeset for help on using the changeset viewer.