Add explicit support for YCS reflectors.

This commit is contained in:
Jonathan Naylor 2020-09-22 15:16:02 +01:00
parent 5a44d85c0f
commit 977a344da3
6 changed files with 63 additions and 36 deletions

View file

@ -58,7 +58,6 @@ m_power(0U),
m_latitude(0.0F),
m_longitude(0.0F),
m_height(0),
m_name(),
m_description(),
m_logDisplayLevel(0U),
m_logFileLevel(0U),
@ -197,8 +196,6 @@ bool CConf::read()
m_longitude = float(::atof(value));
else if (::strcmp(key, "Height") == 0)
m_height = ::atoi(value);
else if (::strcmp(key, "Name") == 0)
m_name = value;
else if (::strcmp(key, "Description") == 0)
m_description = value;
} else if (section == SECTION_LOG) {
@ -374,11 +371,6 @@ int CConf::getHeight() const
return m_height;
}
std::string CConf::getName() const
{
return m_name;
}
std::string CConf::getDescription() const
{
return m_description;