qmlfrontend/engine_instance.h
author nemo
Thu, 08 Nov 2018 08:29:11 -0500
changeset 14194 ef14da7670f1
parent 14175 8354b390f1a2
child 14292 1aac8a62be6f
permissions -rw-r--r--
add the code too

#ifndef ENGINEINSTANCE_H
#define ENGINEINSTANCE_H

#include "engine_interface.h"

#include <QObject>

class EngineInstance : public QObject {
  Q_OBJECT
 public:
  explicit EngineInstance(QObject *parent = nullptr);
  ~EngineInstance();

  Engine::PreviewInfo generatePreview();

 signals:

 public slots:

 private:
  Engine::EngineInstance *m_instance;
};

#endif  // ENGINEINSTANCE_H