Botcraft 1.21.4
Loading...
Searching...
No Matches
DemanglingUtilities.hpp
Go to the documentation of this file.
1#pragma once
2
3#include <string>
4
5namespace Botcraft
6{
7 namespace Utilities
8 {
9 /// @brief Demangle a class name
10 /// @param name Raw output of typeid().name()
11 /// @param simplify_output If true, will simplify the name to get only the class name without any template parameters or namespace prefix
12 /// @return Demangled name
13 std::string Demangle(const std::string& name, const bool simplify_output);
14 }
15}
std::string Demangle(const std::string &name, const bool simplify_output)
Demangle a class name.