X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FTypeInfo.cc;h=0effd193911007b67ec63d92fe9dec1751d40371;hb=25fe79f266e7583750d8e761abec4022d87972b8;hp=c6860f5076d48f7c73c2f07fb3e905a4a5022f67;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Utils/TypeInfo.cc b/Utils/TypeInfo.cc index c6860f5..0effd19 100644 --- a/Utils/TypeInfo.cc +++ b/Utils/TypeInfo.cc @@ -1,9 +1,9 @@ // $Id$ // -// Copyright (C) 2006 -// Fraunhofer Institut fuer offene Kommunikationssysteme (FOKUS) -// Kompetenzzentrum fuer Satelitenkommunikation (SatCom) -// Stefan Bund +// Copyright (C) 2006 +// Fraunhofer Institute for Open Communication Systems (FOKUS) +// Competence Center NETwork research (NET), St. Augustin, GERMANY +// Stefan Bund // // This program is free software; you can redistribute it and/or modify // it under the terms of the GNU General Public License as published by @@ -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" @@ -37,16 +38,16 @@ ///////////////////////////////cc.p//////////////////////////////////////// -// WARNING: This is completely g++ and libiberty dependent. The demangling -// interface isn't even explicitly exportet from libiberty. However, it is +// WARNING: This is completely g++ and libiberty dependent. The demangling +// 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); std::string name (demangled ? demangled : mangled); - if (demangled) + if (demangled) ::free(demangled); return name; } @@ -58,5 +59,10 @@ prefix_ std::string satcom::lib::prettyName(std::type_info const & type) // Local Variables: // mode: c++ -// c-file-style: "satcom" +// fill-column: 100 +// c-file-style: "senf" +// indent-tabs-mode: nil +// ispell-local-dictionary: "american" +// compile-command: "scons -u test" +// comment-column: 40 // End: