baseio.h
Go to the documentation of this file.
1 #ifndef BASEIO_H
2 #define BASEIO_H
3 
4 #include "baselinkable.h"
5 #include "enums/iotype.h"
6 
7 namespace dnai {
8  class BaseIo : public BaseLinkable
9  {
10  public:
11  BaseIo(enums::IoTypeRessouce::IoType type, QQuickItem *parent);
12  ~BaseIo();
13 
19 
24 
25 
26  protected:
28 
29  };
30 }
31 
32 
33 
34 #endif // BASEIO_H
~BaseIo()
Definition: baseio.cpp:9
enums::IoTypeRessouce::IoType m_type
Definition: baseio.h:27
Definition: baselinkable.h:8
QQuickItem * parent() const
Definition: baselinkable.h:60
Definition: baseio.h:8
void setType(enums::IoTypeRessouce::IoType t)
set the IOType
Definition: baseio.cpp:14
IoType
define all the handle type by the application
Definition: iotype.h:17
BaseIo(enums::IoTypeRessouce::IoType type, QQuickItem *parent)
Definition: baseio.cpp:5
Definition: api.h:13
enums::IoTypeRessouce::IoType getType() const
return the IOType
Definition: baseio.cpp:21