#ifndef _UMLACTUALPARAMETER_H #define _UMLACTUALPARAMETER_H #include "UmlBaseActualParameter.h" class File; class UmlTypeSpec; // 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() {}; static void import(File & f, UmlTypeSpec & t); }; #endif