forked from organicmaps/organicmaps
[Guides] Get all possible guides urls to set
This commit is contained in:
parent
35acc28bb5
commit
91eaa78ede
2 changed files with 8 additions and 0 deletions
|
@ -158,6 +158,12 @@ bool GuidesManager::GetGuideInfo(string const & id, GuideInfo & appInfo) const
|
|||
return false;
|
||||
}
|
||||
|
||||
void GuidesManager::GetGuidesId(set<string> & s)
|
||||
{
|
||||
for (MapT::iterator it = m_file2Info.begin(); it != m_file2Info.end();++it)
|
||||
s.insert(it->second.GetAppID());
|
||||
}
|
||||
|
||||
string GuidesManager::GetGuidesDataUrl()
|
||||
{
|
||||
#ifdef DEBUG
|
||||
|
|
|
@ -4,6 +4,7 @@
|
|||
|
||||
#include "../std/string.hpp"
|
||||
#include "../std/map.hpp"
|
||||
#include "../std/set.hpp"
|
||||
#include "../std/scoped_ptr.hpp"
|
||||
#include "../std/noncopyable.hpp"
|
||||
|
||||
|
@ -50,6 +51,7 @@ public:
|
|||
|
||||
/// @param[in] id MWM file name without extension as a key.
|
||||
bool GetGuideInfo(string const & id, GuideInfo & appInfo) const;
|
||||
void GetGuidesId(set<string> & s);
|
||||
|
||||
/// @param[in] appID Guide app package id.
|
||||
//@{
|
||||
|
|
Loading…
Add table
Reference in a new issue