#ifndef _UMLCLASSDIAGRAM_H #define _UMLCLASSDIAGRAM_H #include "UmlBaseClassDiagram.h" #include #include "Vector.h" // This class manages 'class diagrams', notes that the class 'UmlDiagram' // is a mother class of all the diagrams, allowing to generalize their // management // // You can modify it as you want (except the constructor) class UmlClassDiagram : public UmlBaseClassDiagram { public: UmlClassDiagram(void * id, const QCString & n) : UmlBaseClassDiagram(id, n) {}; //returns a string indicating the king of the element virtual QCString sKind(); //set he html ref //set the diagrams list virtual void memo_ref(); static void ref_index(); static void generate_index(); protected: static Vector diagrams; }; #endif