[Guides] Get all possible guides urls to set

This commit is contained in:
Kirill Zhdanovich 2013-10-28 13:02:15 +03:00 committed by Alex Zolotarev
parent 35acc28bb5
commit 91eaa78ede
2 changed files with 8 additions and 0 deletions

View file

@ -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

View file

@ -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.
//@{