User Manual, Developers Guide and API Documentation

Logger.cpp

Go to the documentation of this file.
00001 /*******************************************************************************
00002  * This file is part of openWNS (open Wireless Network Simulator)
00003  * _____________________________________________________________________________
00004  *
00005  * Copyright (C) 2004-2009
00006  * Chair of Communication Networks (ComNets)
00007  * Kopernikusstr. 5, D-52074 Aachen, Germany
00008  * email: info@openwns.org
00009  * www: http://www.openwns.org
00010  * _____________________________________________________________________________
00011  *
00012  * openWNS is free software; you can redistribute it and/or modify it under the
00013  * terms of the GNU Lesser General Public License version 2 as published by the
00014  * Free Software Foundation;
00015  *
00016  * openWNS is distributed in the hope that it will be useful, but WITHOUT ANY
00017  * WARRANTY; without even the implied warranty of MERCHANTABILITY or FITNESS FOR
00018  * A PARTICULAR PURPOSE.  See the GNU Lesser General Public License for more
00019  * details.
00020  *
00021  * You should have received a copy of the GNU Lesser General Public License
00022  * along with this program.  If not, see <http://www.gnu.org/licenses/>.
00023  *
00024  ******************************************************************************/
00025 
00026 
00027 #include <WIMAC/Logger.hpp>
00028 #ifndef _MSC_VER
00029 #include <cxxabi.h>
00030 #endif
00031 
00032 const std::string
00033 wimac::demangledTypename( const std::string& nativeName)
00034 {
00035 #ifdef _MSC_VER
00036     return nativeName;
00037 #else
00038     const size_t max = 1024;
00039     char buf[max + 1];
00040     size_t length = max;
00041     int result;
00042 
00043     abi::__cxa_demangle( nativeName.c_str(), buf, &length, &result);
00044     buf[length] = '\0';
00045     return buf;
00046 #endif
00047 }
00048 

Generated on Sun May 27 03:31:48 2012 for openWNS by  doxygen 1.5.5