From: tho Date: Fri, 27 Jul 2007 13:14:52 +0000 (+0000) Subject: added operator<< for TypeIdValue X-Git-Url: http://g0dil.de/git?a=commitdiff_plain;h=21ebc0092eb8f7754b5400c4b3bfcc0c136d2968;p=senf.git added operator<< for TypeIdValue git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@359 270642c3-0616-0410-b53a-bc976706d245 --- diff --git a/Utils/TypeIdValue.hh b/Utils/TypeIdValue.hh index 1f261be..4e6c853 100644 --- a/Utils/TypeIdValue.hh +++ b/Utils/TypeIdValue.hh @@ -92,6 +92,9 @@ namespace senf { template TypeIdValue const typeIdValue(); + inline std::ostream & operator<<(std::ostream & os, TypeIdValue const & v) + { return os << v.name(); } + } ///////////////////////////////hh.e////////////////////////////////////////