forked from organicmaps/organicmaps-tmp
Added 'DeviceModel' method to platfom.hpp and stub implementations
This commit is contained in:
parent
e4ee963e47
commit
1a7df4a3c0
8 changed files with 32 additions and 5 deletions
|
@ -246,6 +246,8 @@ public:
|
|||
|
||||
string DeviceName() const;
|
||||
|
||||
string DeviceModel() const;
|
||||
|
||||
string UniqueClientId() const;
|
||||
|
||||
/// @return url for clients to download maps
|
||||
|
|
|
@ -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))
|
||||
|
|
|
@ -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, ());
|
||||
|
|
|
@ -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);
|
||||
|
|
|
@ -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, ());
|
||||
|
|
|
@ -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
|
||||
|
|
|
@ -60,6 +60,11 @@ string Platform::DeviceName() const
|
|||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
string Platform::DeviceModel() const
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
void Platform::RunOnGuiThread(TFunctor const & fn)
|
||||
{
|
||||
/// @todo
|
||||
|
|
|
@ -141,6 +141,11 @@ string Platform::DeviceName() const
|
|||
return OMIM_OS_NAME;
|
||||
}
|
||||
|
||||
string Platform::DeviceModel() const
|
||||
{
|
||||
return {};
|
||||
}
|
||||
|
||||
void Platform::RunOnGuiThread(TFunctor const & fn)
|
||||
{
|
||||
/// @todo
|
||||
|
|
Loading…
Add table
Reference in a new issue