MCPcopy Create free account
hub / github.com/comaps/comaps / FileDataToString

Function FileDataToString

libs/kml/pykmlib/bindings.cpp:485–495  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

483}
484
485std::string FileDataToString(FileData const & fd)
486{
487 std::ostringstream out;
488 out << "["
489 << "server_id:" << fd.m_serverId << ", "
490 << "category:" << CategoryDataToString(fd.m_categoryData) << ", "
491 << "bookmarks:" << VectorAdapter<BookmarkData>::ToString(fd.m_bookmarksData) << ", "
492 << "tracks:" << VectorAdapter<TrackData>::ToString(fd.m_tracksData) << ", "
493 << "compilations:" << VectorAdapter<CategoryData>::ToString(fd.m_compilationsData) << "]";
494 return out.str();
495}
496
497struct TimestampConverter
498{

Callers

nothing calls this directly

Calls 2

CategoryDataToStringFunction · 0.85
ToStringFunction · 0.50

Tested by

no test coverage detected