How to show in the class diagram that fnc of this class uses some additional parameters not listed in the class declaration?
For instance:
template<class SomePolicy>
struct SomeClass
{
template<class T>//<= here fnc uses param type not listed in class decl.
void f();
};
source
share