Files
DbSketch/sketchlib/container/rectangle.h
2018-09-16 06:05:23 +02:00

17 lines
340 B
C++

#pragma once
#include "layer.h"
#include "sketchlib_global.h"
class SKETCHLIB_EXPORT Rectangle : public Layer
{
Q_OBJECT
public:
Q_INVOKABLE explicit Rectangle(QObject *parent = Q_NULLPTR);
protected:
// BaseContainer interface
virtual bool parseProperty(const QString &key, const QJsonValue &value) Q_DECL_OVERRIDE;
};