Exemple #1
0
std::string PressureCoefficientPoint::write()
{
  std::string string;
  string += ANY_TO_STR(m_azm) + ' ' + ANY_TO_STR(m_coef) + '\n';
  return string;
}
Exemple #2
0
std::string SchedulePoint::write()
{
  std::string string;
  string += m_time + ' ' + ANY_TO_STR(m_ctrl) + '\n';
  return string;
}
Exemple #3
0
std::string AirflowSubelementData::write()
{
  std::string string;
  string += ANY_TO_STR(m_nr) + ' ' + ANY_TO_STR(m_relHt) + ' ' + ANY_TO_STR(m_filt) + '\n';
  return string;
}
Exemple #4
0
std::string XyDataPoint::write()
{
  std::string string;
  string += ANY_TO_STR(m_x) + ' ' + ANY_TO_STR(m_y) + '\n';
  return string;
}
Exemple #5
0
std::string FanDataPoint::write()
{
  std::string string;
  string += ANY_TO_STR(m_mF) + ' ' + ANY_TO_STR(m_u_mF) + ' ' + ANY_TO_STR(m_dP) + ' ' + ANY_TO_STR(m_u_dP) + ' ' + ANY_TO_STR(m_rP) + ' ' + ANY_TO_STR(m_u_rP) + '\n';
  return string;
}
std::string WeatherDataImpl::write()
{
  std::string string;
  string += ANY_TO_STR(m_Tambt) + ' ' + ANY_TO_STR(m_barpres) + ' ' + ANY_TO_STR(m_windspd) + ' ' + ANY_TO_STR(m_winddir) + ' ' + ANY_TO_STR(m_relhum) + ' ' + ANY_TO_STR(m_daytyp) + ' ' + ANY_TO_STR(m_uTa) + ' ' + ANY_TO_STR(m_ubP) + ' ' + ANY_TO_STR(m_uws) + ' ' + ANY_TO_STR(m_uwd) + '\n';
  return string;
}
std::string IconImpl::write()
{
  std::string string;
  string += ANY_TO_STR(m_icon) + ' ' + ANY_TO_STR(m_col) + ' ' + ANY_TO_STR(m_row) + ' ' + ANY_TO_STR(m_nr) + '\n';
  return string;
}