iotype.h
Go to the documentation of this file.
1 #ifndef IOTYPE_H
2 #define IOTYPE_H
3 
4 #include <QObject>
5 
6 namespace dnai {
7 namespace enums {
8 class IoTypeRessouce : public QObject
9 {
10  Q_OBJECT
11 public:
12  explicit IoTypeRessouce(QObject *parent = nullptr) : QObject(parent) {}
17  enum IoType : qint32
18  {
19  Int,
26  Count //Get the size of enum, must be at the end all the time!
27  };
28  Q_ENUM(IoType)
29 };
30 }
31 }
32 
33 #endif // IOTYPE_H
Definition: iotype.h:23
~IoTypeRessouce()
Definition: iotype.h:13
Definition: iotype.h:20
IoType
define all the handle type by the application
Definition: iotype.h:17
Definition: project.h:9
Definition: api.h:13
IoTypeRessouce(QObject *parent=nullptr)
Definition: iotype.h:12
Definition: iotype.h:19
Definition: iotype.h:8