Ignore:
Timestamp:
07/07/11 19:51:22 (13 years ago)
Author:
tbretz
Message:
Added virtual function for locking; fixed the order of instantiation of the base classes of StateMachineDim.
File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/FACT++/src/StateMachineDim.cc

    r11063 r11280  
    6565//
    6666StateMachineDim::StateMachineDim(ostream &out, const std::string &name)
    67     : StateMachine(out, name), DimLog(out, name), DimStart(name, DimLog::fLog),
     67    : DimLog(out, name), DimStart(name, DimLog::fLog), StateMachineImp(out, name),
    6868    fDescriptionStates((name+"/STATE_LIST").c_str(), const_cast<char*>(""),
    6969                       "Provides a list with descriptions for each service."
     
    140140}
    141141
     142void StateMachineDim::Lock()
     143{
     144//    dim_lock();
     145}
     146
     147void StateMachineDim::UnLock()
     148{
     149//    dim_unlock();
     150}
     151
    142152// --------------------------------------------------------------------------
    143153//
Note: See TracChangeset for help on using the changeset viewer.