Beispiel #1
0
std::string typeNameToString(const TypeName& type)
{
    std::ostringstream stream;
    for (size_t i = 0; i < type.size(); ++i)
    {
        stream << type[i];
        if (i < type.size() - 1)
            stream << '.';
    }
    return stream.str();
}