27 lines
587 B
C++
27 lines
587 B
C++
|
|
// -*- C++ -*-
|
|
|
|
|
|
namespace Hurricane {
|
|
|
|
|
|
/*! \addtogroup Generalities
|
|
* \{
|
|
*/
|
|
|
|
/*! \function string demangle ( const char* symbol );
|
|
* Translate (demangle) a symbol from C++ (\c gnu-v3) internal format
|
|
* into a human readable \string.
|
|
*/
|
|
|
|
/*! \function string demangle ( const type_info& info );
|
|
* \param info a type_info structure as returned by \c typeid().
|
|
*
|
|
* Translate (demangle) a symbol from C++ (\c gnu-v3) internal format
|
|
* into a human readable \string.
|
|
*/
|
|
|
|
// \}
|
|
|
|
}
|