instruction.h
Go to the documentation of this file.
1 #ifndef DNAI_MODELS_INSTRUCTION_H
2 #define DNAI_MODELS_INSTRUCTION_H
3 
4 #include "core/entity.h"
5 #include "entity.h"
6 
7 namespace dnai
8 {
9  namespace models
10  {
11  class Instruction : public Entity
12  {
13  public:
14  ~Instruction() = default;
15 
16  gcore::Entity* coreModel() const override;
17  void setCoreModel(gcore::Entity* model) override;
18  private:
19  gcore::Entity * m_data = nullptr;
20  };
21  }
22 }
23 
24 #endif //DNAI_MODELS_INSTRUCTION_H
Definition: entity.h:23
Definition: api.h:13
Definition: instruction.h:11
void setCoreModel(gcore::Entity *model) override
gcore::Entity * coreModel() const override
Definition: entity.h:71
gcore::Entity * m_data
Definition: instruction.h:19