I use a lot templated classes in C++, and it is not easy to modelize them in UML.
How to modelize that, for example ?
template<template<typename> class TBaseId, class TFinalId>
class MyClass: public TBaseId<TFinalId>
{
};
Other point : is it possible to use ternary association instead of bind stereotype to modelize template associations ?
Note : I do know the basic template representation (with bind relationship). My needs are for more complex situations.