#ifndef _UMLCOLLABORATIONDIAGRAM_H #define _UMLCOLLABORATIONDIAGRAM_H #include "UmlBaseCollaborationDiagram.h" #include class File; class UmlItem; // This class manages 'collaboration 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 UmlCollaborationDiagram : public UmlBaseCollaborationDiagram { public: UmlCollaborationDiagram(void * id, const QCString & n) : UmlBaseCollaborationDiagram(id, n) { cpt[kind()] += 1; }; static void import(File & f, UmlItem * p); }; #endif