objecttype.h
Go to the documentation of this file.
1 #ifndef DNAI_MODELS_GUI_DATA_OBJECTTYPE_H
2 #define DNAI_MODELS_GUI_DATA_OBJECTTYPE_H
3 
4 #include "entity.h"
9 
10 namespace dnai
11 {
12  namespace models
13  {
14  namespace gui
15  {
16  namespace declarable {
17  class ObjectType;
18  }
19  namespace data
20  {
21  struct ObjectType : Entity
22  {
23  QMap<QString, QUuid> attributes;
24  QList<QUuid> functions;
25  };
26  }
27  }
28  }
29 }
30 
31 #endif //DNAI_MODELS_GUI_DATA_OBJECTTYPE_H
dnai::models::gui::declarable::ObjectType ObjectType
Definition: entity.h:178
Definition: entity.h:15
QList< QUuid > functions
Definition: objecttype.h:24
QMap< QString, QUuid > attributes
Definition: objecttype.h:23
Definition: objecttype.h:21
Definition: api.h:13