mirror of
https://github.com/oe7drt/YSFClients.git
synced 2026-04-21 06:03:58 +00:00
Add explicit support for YCS reflectors.
This commit is contained in:
parent
5a44d85c0f
commit
977a344da3
6 changed files with 63 additions and 36 deletions
|
|
@ -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;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue