Files

12 lines
215 B
C++
Raw Permalink Normal View History

2018-09-16 06:05:23 +02:00
#include "shapegroup.h"
ShapeGroup::ShapeGroup(QObject *parent) :
Group(parent)
{
}
bool ShapeGroup::parseProperty(const QString &key, const QJsonValue &value)
{
return Group::parseProperty(key, value);
}