This repository has been archived on 2025-03-22. You can view files and clone it, but cannot push or open issues or pull requests.
organicmaps-tmp/search/bookmarks/data.cpp
Maxim Pimenov dab6f94e4d [search] [bookmarks] Enabled indexing in the CurrentOrig locale.
Note that bookmark's custom name is still being indexed when it differs
from bookmark's name. This in fact has been the intended behaviour
all along.
2019-08-23 19:12:17 +03:00

20 lines
385 B
C++

#include "search/bookmarks/data.hpp"
#include <sstream>
using namespace std;
namespace search
{
namespace bookmarks
{
string DebugPrint(Data const & data)
{
ostringstream os;
os << "Data [";
os << "names: " << ::DebugPrint(data.GetNames()) << ", ";
os << "description: " << data.GetDescription() << "]";
return os.str();
}
} // namespace bookmarks
} // namespace search