X-Git-Url: http://g0dil.de/git?a=blobdiff_plain;f=Utils%2FTypeInfo.cc;h=1c1825604c6a4b5e50d83121839a960851aba54c;hb=1b1d76302a5d61e918ef71f1c8e11f80ac1262e2;hp=c6860f5076d48f7c73c2f07fb3e905a4a5022f67;hpb=c52cd7d87dbb525c1267aad27391b8b7365dbb57;p=senf.git diff --git a/Utils/TypeInfo.cc b/Utils/TypeInfo.cc index c6860f5..1c18256 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,13 +20,16 @@ // 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" // Custom includes #include "malloc.h" + +// Copied from the binutils sources #define HAVE_DECL_BASENAME 1 #define HAVE_DECL_ASPRINTF 1 #define HAVE_DECL_VASPRINTF 1 @@ -37,16 +40,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 +61,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: