1
0
mirror of https://gitlab.com/kelteseth/ScreenPlay.git synced 2024-11-07 03:22:33 +01:00
ScreenPlay/ScreenPlayWorkshop/workshop.h
2018-10-17 20:39:39 +02:00

17 lines
236 B
C++

#ifndef WORKSHOP_H
#define WORKSHOP_H
#include <QQuickItem>
class Workshop : public QQuickItem
{
Q_OBJECT
Q_DISABLE_COPY(Workshop)
public:
Workshop(QQuickItem *parent = nullptr);
~Workshop();
};
#endif // WORKSHOP_H