Added 'DeviceModel' method to platfom.hpp and stub implementations

This commit is contained in:
Александр Зацепин 2018-03-01 14:16:55 +03:00 committed by Aleksandr Zatsepin
parent e4ee963e47
commit 1a7df4a3c0
8 changed files with 32 additions and 5 deletions

View file

@ -246,6 +246,8 @@ public:
string DeviceName() const;
string DeviceModel() const;
string UniqueClientId() const;
/// @return url for clients to download maps

View file

@ -196,6 +196,11 @@ string Platform::DeviceName() const
return OMIM_OS_NAME;
}
string Platform::DeviceModel() const
{
return {};
}
void Platform::GetFilesByRegExp(string const & directory, string const & regexp, FilesList & res)
{
if (ZipFileReader::IsZip(directory))

View file

@ -148,6 +148,11 @@ string Platform::DeviceName() const
return OMIM_OS_NAME;
}
string Platform::DeviceModel() const
{
return {};
}
void Platform::RunOnGuiThread(base::TaskLoop::Task && task)
{
ASSERT(m_guiThread, ());

View file

@ -217,6 +217,11 @@ string Platform::DeviceName() const
return OMIM_OS_NAME;
}
string Platform::DeviceModel() const
{
return {};
}
Platform::EConnectionType Platform::ConnectionStatus()
{
int socketFd = socket(AF_INET, SOCK_STREAM, 0);

View file

@ -118,6 +118,11 @@ string Platform::DeviceName() const
return OMIM_OS_NAME;
}
string Platform::DeviceModel() const
{
return {};
}
void Platform::RunOnGuiThread(base::TaskLoop::Task && task)
{
ASSERT(m_guiThread, ());

View file

@ -23,11 +23,6 @@ unique_ptr<ModelReader> Platform::GetReader(string const & file, string const &
READER_CHUNK_LOG_SIZE, READER_CHUNK_LOG_COUNT);
}
string Platform::DeviceName() const
{
return OMIM_OS_NAME;
}
bool Platform::GetFileSizeByName(string const & fileName, uint64_t & size) const
{
try

View file

@ -60,6 +60,11 @@ string Platform::DeviceName() const
return OMIM_OS_NAME;
}
string Platform::DeviceModel() const
{
return {};
}
void Platform::RunOnGuiThread(TFunctor const & fn)
{
/// @todo

View file

@ -141,6 +141,11 @@ string Platform::DeviceName() const
return OMIM_OS_NAME;
}
string Platform::DeviceModel() const
{
return {};
}
void Platform::RunOnGuiThread(TFunctor const & fn)
{
/// @todo