#ifndef _UMLFORMALPARAMETER_H #define _UMLFORMALPARAMETER_H #include "UmlBaseFormalParameter.h" #include // This class manages 'formal parameters' of a template class. For instance 'T' in // // template class Cl ... // // You can modify it as you want (except the constructor) class UmlFormalParameter : public UmlBaseFormalParameter { public: UmlFormalParameter() {}; UmlFormalParameter(QCString name, QCString value); }; inline UmlFormalParameter::UmlFormalParameter(QCString name, QCString value) { _name = name; _type = "typename"; _default_value.explicit_type = value; } #endif