|
|
|
@ -55,7 +55,8 @@ namespace lookups
|
|
|
|
m_filename(filename),
|
|
|
|
m_filename(filename),
|
|
|
|
m_reloadTime(reloadTime),
|
|
|
|
m_reloadTime(reloadTime),
|
|
|
|
m_table(),
|
|
|
|
m_table(),
|
|
|
|
m_stop(false)
|
|
|
|
m_stop(false),
|
|
|
|
|
|
|
|
m_lastLoadTime(0U)
|
|
|
|
{
|
|
|
|
{
|
|
|
|
/* stub */
|
|
|
|
/* stub */
|
|
|
|
}
|
|
|
|
}
|
|
|
|
@ -191,6 +192,8 @@ namespace lookups
|
|
|
|
std::unordered_map<uint32_t, T> m_table;
|
|
|
|
std::unordered_map<uint32_t, T> m_table;
|
|
|
|
bool m_stop;
|
|
|
|
bool m_stop;
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
uint64_t m_lastLoadTime;
|
|
|
|
|
|
|
|
|
|
|
|
/**
|
|
|
|
/**
|
|
|
|
* @brief Loads the table from the passed lookup table file.
|
|
|
|
* @brief Loads the table from the passed lookup table file.
|
|
|
|
* @returns bool True, if lookup table was loaded, otherwise false.
|
|
|
|
* @returns bool True, if lookup table was loaded, otherwise false.
|
|
|
|
|