1DEMANGLE(1) DEMANGLE(1)
2
3
4
6 demangle - Undo C++ name mangling for symbols
7
9 demangle
10
11
13 demangle reads a list of C++ mangled symbol names from standard input
14 and converts these names to human-readable form on standard output.
15
16
17 This utility is part of the KDE Software Development Kit.
18
19
21 Create a file called names containing the following mangled symbol
22 names:
23
24 _ZNK6Object10metaObjectEv
25 _ZN8QPtrListI5ArrowE5clearEv
26 _ZTC4Kolf0_11KMainWindow
27
28
29 These names can then be demangled as follows:
30
31
32 example$ demangle < names Object::metaObject() const QP‐
33 trList<Arrow>::clear() construction vtable for KMainWin‐
34 dow-in-Kolf
35
37 kminspector(1) kmtrace(1) match(1)
38
39
41 Ben Burton.
42
43
44
45 April 7, 2003 DEMANGLE(1)