#ifndef _UMLENTRYPOINTPSEUDOSTATE_H #define _UMLENTRYPOINTPSEUDOSTATE_H #include "UmlBaseEntryPointPseudoState.h" #include class UmlClass; class UmlState; class UmlEntryPointPseudoState : public UmlBaseEntryPointPseudoState { public: // the constructor, do not call it yourself !!!!!!!!!! UmlEntryPointPseudoState(void * id, const QCString & s) : UmlBaseEntryPointPseudoState(id, s) { } virtual void generate(UmlClass * machine, UmlClass * anystate, UmlState * state, QCString & body, QCString indent); }; #endif