qmlfrontend/engine_instance.h
author alfadur
Mon, 19 Nov 2018 04:21:44 +0300
changeset 14234 27ae2d3d04b6
parent 14154 8354b390f1a2
child 14271 1aac8a62be6f
permissions -rw-r--r--
seems like it's either this or swap indexing order everywhere

#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