FACT++  1.0
template<class T , class S >
int StateMachineFTM< T, S >::SaveStaticData ( const EventImp evt)
inlineprivate

Definition at line 1620 of file ftmctrl.cc.

References EventImp::GetString().

Referenced by StateMachineFTM< T, S >::StateMachineFTM().

1621  {
1622  if (fFTM.SaveStaticData(evt.GetString()))
1623  return T::GetCurrentState();
1624 
1625  ostringstream msg;
1626  msg << "Writing static data to file '" << evt.GetString() << "' failed ";
1627  msg << "(" << strerror(errno) << ")";
1628 
1629  T::Warn(msg);
1630 
1631  return T::GetCurrentState();
1632  }
std::string GetString() const
Definition: EventImp.cc:194

+ Here is the call graph for this function:

+ Here is the caller graph for this function: