mirror of
https://gitlab.com/kelteseth/ScreenPlay.git
synced 2024-11-07 03:22:33 +01:00
17 lines
236 B
C++
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
|