flowtype.h
Go to the documentation of this file.
1 #ifndef FLOWTYPE_H
2 #define FLOWTYPE_H
3 
4 #include <QObject>
5 
6 namespace dnai {
7 namespace enums {
8 class FlowTypeRessouce : public QObject
9 {
10  Q_OBJECT
11 public:
12  explicit FlowTypeRessouce(QObject *parent = nullptr) : QObject(parent) {}
14 
18  enum FlowType
19  {
22  };
23  Q_ENUM(FlowType)
24 };
25 }
26 }
27 
28 #endif // FLOWTYPE_H
Definition: flowtype.h:8
Definition: flowtype.h:21
~FlowTypeRessouce()
Definition: flowtype.h:13
Definition: flowtype.h:20
Definition: api.h:13
FlowType
Enum of available type for a flow.
Definition: flowtype.h:18
FlowTypeRessouce(QObject *parent=nullptr)
Definition: flowtype.h:12