#ifndef _UMLACTUALPARAMETER_H #define _UMLACTUALPARAMETER_H #include "UmlBaseActualParameter.h" class QTextOStream; // This class manages 'actual parameters' of a template class. For instance T in // // class Cl1 : public Cl2 ... // // You can modify it as you want (except the constructor) class UmlActualParameter : public UmlBaseActualParameter { public: UmlActualParameter() {}; void generate(QTextOStream & f) const; }; #endif