FACT++  1.0
string StateMachineSmartFACT::GetTempColor ( float  t)
inlineprivate

Definition at line 2014 of file smartfact.cc.

References HTML::kGreen, HTML::kRed, and HTML::kYellow.

2015  {
2016  if (t>25 && t<30)
2017  return HTML::kGreen;
2018 
2019  if (t<20 || t>35)
2020  return HTML::kRed;
2021 
2022  return HTML::kYellow;
2023  }
static const string kYellow
Definition: smartfact.cc:75
static const string kGreen
Definition: smartfact.cc:77
TT t
Definition: test_client.c:26
static const string kRed
Definition: smartfact.cc:76