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

12 lines
191 B
C++

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