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

12 lines
215 B
C++

#include "shapegroup.h"
ShapeGroup::ShapeGroup(QObject *parent) :
Group(parent)
{
}
bool ShapeGroup::parseProperty(const QString &key, const QJsonValue &value)
{
return Group::parseProperty(key, value);
}