#ifndef _UMLEXITPOINTPSEUDOSTATE_H #define _UMLEXITPOINTPSEUDOSTATE_H #include #include "UmlBaseExitPointPseudoState.h" class UmlExitPointPseudoState : public UmlBaseExitPointPseudoState { public: //returns a string indicating the king of the element virtual QCString sKind(); // the constructor, do not call it yourself !!!!!!!!!! UmlExitPointPseudoState(void * id, const QCString & s) : UmlBaseExitPointPseudoState(id, s) { } }; #endif