I have a template class
template <typename TString>
class IStringable
{
public:
TString ToString() const = 0;
void Parse(const TString& data) = 0;
};
class WStringable : public IStringable<eastl::wstring>
{
};
At the moment I am able to show it with
I was wondering when will https://www.uml-diagrams.org/template.html be supported as that is the diagram that I need to do?