1/*
2 * Copyright 2009, Ingo Weinhold, ingo_weinhold@gmx.de.
3 * Distributed under the terms of the MIT License.
4 */
5#ifndef DEMANGLER_H
6#define DEMANGLER_H
7
8#include <String.h>
9
10
11class Demangler {
12public:
13	static	BString				Demangle(const BString& mangledName);
14};
15
16
17#endif	// DEMANGLER_H
18