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.h

32 lines
512 B
C
Raw Normal View History

2015-09-06 18:57:18 +02:00
#ifndef GUIDEDEDITORLAYER_H
#define GUIDEDEDITORLAYER_H
#include <QObject>
#include <QString>
#include <QColor>
class GuidedEditorLayer : public QObject
{
Q_OBJECT
public:
explicit GuidedEditorLayer(QObject *parent = 0);
GuidedEditorLayer(QString title, QObject *parent = 0);
QString getTitle() const;
void setTitle(const QString &value);
QColor getColor() const;
void setColor(const QColor &value);
private:
QString title;
QColor color;
signals:
public slots:
};
#endif // GUIDEDEDITORLAYER_H