Add a fubction which converts a template typename to a string

This commit is contained in:
Erik Hofman 2021-03-27 15:19:23 +01:00
parent 0530bc2cd7
commit 5e837b50c4

View File

@ -3,12 +3,33 @@
#include <string>
#include <typeinfo>
#if __linux__
#include <cxxabi.h>
#endif
namespace simgear
{
/* return the template name as a string */
template <typename T>
std::string getTypeName(void)
{
#ifdef _WIN32
std::string name = typeid(T).name();
#else // __linux__
int error = 0;
char *type = abi::__cxa_demangle(typeid(T).name(), 0, 0, &error);
std::string name = type;
free(type);
#endif
return name;
}
/**
* Return a pointer to a single string object for a given string.
*/
const std::string* intern(const std::string& str);
}
#endif