#include "guidededitorlayer.h" GuidedEditorLayer::GuidedEditorLayer(QObject *parent) : QObject(parent) { } QString GuidedEditorLayer::getTitle() const { return title; } void GuidedEditorLayer::setTitle(const QString &value) { title = value; } QColor GuidedEditorLayer::getColor() const { return color; } void GuidedEditorLayer::setColor(const QColor &value) { color = value; }