1 /*
2 * Inkscape::Debug::demangle - demangle C++ symbol names
3 *
4 * Authors:
5 * MenTaLguY <mental@rydia.net>
6 *
7 * Copyright (C) 2006 MenTaLguY
8 *
9 * Released under GNU GPL, read the file 'COPYING' for more information
10 */
12 #ifndef SEEN_INKSCAPE_DEBUG_DEMANGLE_H
13 #define SEEN_INKSCAPE_DEBUG_DEMANGLE_H
15 #include "util/share.h"
17 namespace Inkscape {
19 namespace Debug {
21 Util::ptr_shared<char> demangle(char const *name);
23 }
25 }
27 #endif
28 /*
29 Local Variables:
30 mode:c++
31 c-file-style:"stroustrup"
32 c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +))
33 indent-tabs-mode:nil
34 fill-column:99
35 End:
36 */
37 // vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 :