Simplify the format of the XLX Hosts file a little.

This commit is contained in:
Jonathan Naylor 2017-09-26 14:58:22 +01:00
parent 82ce7a32f3
commit 2159abb418
9 changed files with 167 additions and 142 deletions

View file

@ -29,17 +29,13 @@ public:
CReflector() :
m_id(0U),
m_address(),
m_port(0U),
m_startup(0U),
m_password()
m_startup(0U)
{
}
unsigned int m_id;
std::string m_address;
unsigned int m_port;
unsigned int m_startup;
std::string m_password;
};
class CReflectors {