model.h
Go to the documentation of this file.
1 #ifndef DNAI_MODELS_ML_MODEL_H
2 #define DNAI_MODELS_ML_MODEL_H
3 
4 #include <QObject>
5 
6 namespace dnai {
7 namespace models {
8 namespace ml {
9 class Model : public QObject
10 {
11  Q_OBJECT
12 public:
13  Model() {}
14  virtual ~Model() {}
15 };
16 }
17 }
18 }
19 
20 #endif // DNAI_MODELS_ML_MODEL_H
Definition: model.h:9
Model()
Definition: model.h:13
Definition: api.h:13
virtual ~Model()
Definition: model.h:14