24 lines
395 B
C++
24 lines
395 B
C++
#include "Settings.h"
|
|
|
|
namespace Older {
|
|
uint32_t Settings::threads() const {
|
|
return m_threads;
|
|
}
|
|
|
|
std::string Settings::server() const {
|
|
return m_server;
|
|
}
|
|
|
|
uint16_t Settings::port() const {
|
|
return m_port;
|
|
}
|
|
|
|
std::string Settings::live2dModelsRoot() const {
|
|
return m_live2dModelsRoot;
|
|
}
|
|
|
|
std::string Settings::sqlitePath() const{
|
|
return m_sqlitePath;
|
|
}
|
|
|
|
} // namespace Older
|