added operator<< for TypeIdValue
tho [Fri, 27 Jul 2007 13:14:52 +0000 (13:14 +0000)]
git-svn-id: https://svn.berlios.de/svnroot/repos/senf/trunk@359 270642c3-0616-0410-b53a-bc976706d245

Utils/TypeIdValue.hh

index 1f261be..4e6c853 100644 (file)
@@ -92,6 +92,9 @@ namespace senf {
     template <class Type>
     TypeIdValue const typeIdValue();
 
+    inline std::ostream & operator<<(std::ostream & os, TypeIdValue const & v)
+    { return os << v.name(); }
+    
 }
 
 ///////////////////////////////hh.e////////////////////////////////////////