Kaydet (Commit) 92928f99 authored tarafından Markus Mohrhard's avatar Markus Mohrhard Kaydeden (comit) Markus Mohrhard

add some debug helpers

Change-Id: I03d8baab55548fde1e34b55927fd5dcf9cff58a9
üst ade1641a
...@@ -48,6 +48,22 @@ namespace chart { ...@@ -48,6 +48,22 @@ namespace chart {
namespace dummy { namespace dummy {
#if 0
std::ostream& operator<<(std::ostream& rStrm, const awt::Point& rPoint)
{
rStrm << rPoint.X << "," << rPoint.Y;
return rStrm;
}
std::ostream& operator<<(std::ostream& rStrm, const awt::Size& rSize)
{
rStrm << rSize.Width << "," << rSize.Height;
return rStrm;
}
#endif
bool TextCache::hasEntry(const TextCacheKey& rKey) bool TextCache::hasEntry(const TextCacheKey& rKey)
{ {
return maCache.find(rKey) != maCache.end(); return maCache.find(rKey) != maCache.end();
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment