Ejemplo n.º 1
0
std::string PressureCoefficientPoint::write()
{
  std::string string;
  string += ANY_TO_STR(m_azm) + ' ' + ANY_TO_STR(m_coef) + '\n';
  return string;
}
Ejemplo n.º 2
0
std::string SchedulePoint::write()
{
  std::string string;
  string += m_time + ' ' + ANY_TO_STR(m_ctrl) + '\n';
  return string;
}
Ejemplo n.º 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;
}
Ejemplo n.º 4
0
std::string XyDataPoint::write()
{
  std::string string;
  string += ANY_TO_STR(m_x) + ' ' + ANY_TO_STR(m_y) + '\n';
  return string;
}
Ejemplo n.º 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;
}
Ejemplo n.º 6
0
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;
}
Ejemplo n.º 7
0
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;
}