Home | History | Annotate | Download | only in libregex
      1 /**
      2  * @file demangle_java_symbol.h
      3  * Demangle a java symbol
      4  *
      5  * @remark Copyright 2007 OProfile authors
      6  * @remark Read the file COPYING
      7  *
      8  * @author Philippe Elie
      9  */
     10 
     11 #ifndef DEMANGLE_JAVA_SYMBOL_H
     12 #define DEMANGLE_JAVA_SYMBOL_H
     13 
     14 #include <string>
     15 
     16 /// Return an empty string on error
     17 std::string const demangle_java_symbol(std::string const & name);
     18 
     19 #endif // DEMANGLE_JAVA_SYMBOL_H
     20