FACT++  1.0
std::string DimVersion::version ( ) const
inline

Definition at line 236 of file DimState.h.

References DimState::online(), and DimState::state().

Referenced by StateMachineSmartFACT::Execute().

237  {
238  if (!online())
239  return "Offline";
240 
241  std::ostringstream out;
242  out << "V" << state()/100 << 'r' << state()%100;
243  return out.str();
244  }
const int32_t & state() const
Definition: DimState.h:80
bool online() const
Definition: DimState.h:82

+ Here is the call graph for this function:

+ Here is the caller graph for this function: