mirror of
https://codeberg.org/comaps/comaps
synced 2026-01-05 04:03:46 +00:00
committed by
Konstantin Pastbin
parent
c9cbb64f12
commit
76ffc99abd
20
libs/search/bookmarks/data.cpp
Normal file
20
libs/search/bookmarks/data.cpp
Normal file
@@ -0,0 +1,20 @@
|
||||
#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
|
||||
Reference in New Issue
Block a user