00001 /** 00002 * @file demangle_java_symbol.h 00003 * Demangle a java symbol 00004 * 00005 * @remark Copyright 2007 OProfile authors 00006 * @remark Read the file COPYING 00007 * 00008 * @author Philippe Elie 00009 */ 00010 00011 #ifndef DEMANGLE_JAVA_SYMBOL_H 00012 #define DEMANGLE_JAVA_SYMBOL_H 00013 00014 #include <string> 00015 00016 /// Return an empty string on error 00017 std::string const demangle_java_symbol(std::string const & name); 00018 00019 #endif // DEMANGLE_JAVA_SYMBOL_H
1.6.1