ieditormodel.h
Go to the documentation of this file.
1 #ifndef DNAI_INTERFACES_IEDITORMODEL_H
2 #define DNAI_INTERFACES_IEDITORMODEL_H
3 
4 #include <QAbstractItemModel>
5 #include "iserializable.h"
6 
7 namespace dnai
8 {
9  namespace interfaces
10  {
11  class IEditorModel : public QAbstractItemModel, public ISerializable
12  {
13  virtual ~IEditorModel() = default;
14  };
15  }
16 }
17 
18 #endif //DNAI_INTERFACES_EDITOR_H
Allow inherited class to serialize and deserialize itself.
Definition: iserializable.h:11
virtual ~IEditorModel()=default
Definition: api.h:13
Definition: ieditormodel.h:11