FACT++  1.0
template<typename T >
T fits::Table::Get ( const std::string &  key,
const T &  deflt 
) const
inline

Definition at line 438 of file fits.h.

439  {
440  const Keys::const_iterator it = keys.find(key);
441  return it==keys.end() ? deflt :it->second.Get<T>();
442  }
Keys keys
Definition: fits.h:118