This repository has been archived on 2020-12-30. You can view files and clone it, but cannot push or open issues or pull requests.
NetworkPacketComposer/guidededitorlayer.cpp

28 lines
388 B
C++
Raw Normal View History

2015-09-06 18:57:18 +02:00
#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;
}