Logger API skeleton implementation
[senf.git] / Utils / TypeInfo.cc
index c6860f5..296f22b 100644 (file)
@@ -20,7 +20,8 @@
 // Free Software Foundation, Inc.,
 // 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
 
-// Definition of non-inline non-template functions
+/** \file
+    \brief TypeInfo non-inline non-template implementation */
 
 #include "TypeInfo.hh"
 //#include "TypeInfo.ih"
@@ -41,7 +42,7 @@
 // interface isn't even explicitly exportet from libiberty. However, it is 
 // *EXTREMELY* helpful for debugging ...
 
-prefix_ std::string satcom::lib::prettyName(std::type_info const & type)
+prefix_ std::string senf::prettyName(std::type_info const & type)
 {
     char const * mangled = type.name();
     char * demangled = ::cplus_demangle(mangled,DMGL_TYPES|DMGL_AUTO);
@@ -58,5 +59,5 @@ prefix_ std::string satcom::lib::prettyName(std::type_info const & type)
 \f
 // Local Variables:
 // mode: c++
-// c-file-style: "satcom"
+// c-file-style: "senf"
 // End: