diff options
| author | MenTaLguY <mental@rydia.net> | 2006-05-08 23:32:44 +0000 |
|---|---|---|
| committer | mental <mental@users.sourceforge.net> | 2006-05-08 23:32:44 +0000 |
| commit | 87b4552c924bc685a8ea8608a1c22c23fe54d980 (patch) | |
| tree | 37e936dce89a29b1382f4361be54679d703a41f0 /src/debug/demangle.h | |
| parent | use c++filt for symbol demangling if available (diff) | |
| download | inkscape-87b4552c924bc685a8ea8608a1c22c23fe54d980.tar.gz inkscape-87b4552c924bc685a8ea8608a1c22c23fe54d980.zip | |
add missing files
(bzr r779)
Diffstat (limited to 'src/debug/demangle.h')
| -rw-r--r-- | src/debug/demangle.h | 37 |
1 files changed, 37 insertions, 0 deletions
diff --git a/src/debug/demangle.h b/src/debug/demangle.h new file mode 100644 index 000000000..8c0dd6b4e --- /dev/null +++ b/src/debug/demangle.h @@ -0,0 +1,37 @@ +/* + * Inkscape::Debug::demangle - demangle C++ symbol names + * + * Authors: + * MenTaLguY <mental@rydia.net> + * + * Copyright (C) 2006 MenTaLguY + * + * Released under GNU GPL, read the file 'COPYING' for more information + */ + +#ifndef SEEN_INKSCAPE_DEBUG_DEMANGLE_H +#define SEEN_INKSCAPE_DEBUG_DEMANGLE_H + +#include "util/share.h" + +namespace Inkscape { + +namespace Debug { + +Util::ptr_shared<char> demangle(char const *name); + +} + +} + +#endif +/* + Local Variables: + mode:c++ + c-file-style:"stroustrup" + c-file-offsets:((innamespace . 0)(inline-open . 0)(case-label . +)) + indent-tabs-mode:nil + fill-column:99 + End: +*/ +// vim: filetype=cpp:expandtab:shiftwidth=4:tabstop=8:softtabstop=4:encoding=utf-8:textwidth=99 : |
