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