Changeset 9322


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

Legend:

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

    r8620 r9322  
    9292}
    9393
    94 BaseCommunication::BaseCommunication() {
    95         this->transport = NULL;
    96         this->started = false;
    97 }
     94
     95BaseCommunication::BaseCommunication()
     96        : currentSeqnum( 0 ),
     97          transport( NULL ),
     98          messageReceiver( NULL ),
     99          started( false )
     100{
     101}
     102
    98103
    99104BaseCommunication::~BaseCommunication(){
    100105}
     106
    101107
    102108void BaseCommunication::start() {
Note: See TracChangeset for help on using the changeset viewer.