Ignore:
Timestamp:
Jul 16, 2009, 10:59:38 AM (15 years ago)
Author:
Christoph Mayer
Message:

-is started function

File:
1 edited

Legend:

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

    r4762 r4984  
    5656
    5757BaseCommunication::BaseCommunication()
    58         : messageReceiver(NULL), network(NULL), transport(NULL){
     58        : messageReceiver(NULL), network(NULL), transport(NULL), basecommStarted(false){
    5959}
    6060
     
    145145        //
    146146
     147        basecommStarted = true;
    147148        logging_info( "base communication started up" );
    148149}
     
    156157        delete network;
    157158
     159        basecommStarted = false;
    158160        logging_info( "base communication stopped" );
     161}
     162
     163bool BaseCommunication::isStarted(){
     164        return basecommStarted;
    159165}
    160166
Note: See TracChangeset for help on using the changeset viewer.