actor.h
00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012 #ifndef ACTOR_H
00013 #define ACTOR_H
00014
00015 #include "umlcanvasobject.h"
00016
00028 class UMLActor : public UMLCanvasObject {
00029 Q_OBJECT
00030 public:
00037 explicit UMLActor(const QString & name = "", Uml::IDType id = Uml::id_None);
00038
00042 ~UMLActor();
00043
00047 virtual void init();
00048
00052 virtual UMLObject* clone() const;
00053
00057 void saveToXMI( QDomDocument & qDoc, QDomElement & qElement );
00058
00059 protected:
00063 bool load( QDomElement & element );
00064 };
00065
00066 #endif
This file is part of the documentation for umbrello Version 3.1.0.