summaryrefslogtreecommitdiff
path: root/tikzit/graphelementdata.h
blob: e67d740bbcd34486f966bf9080115cccaf51dc19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
#ifndef GRAPHELEMENTDATA_H
#define GRAPHELEMENTDATA_H

#include <QObject>
#include <QString>

class GraphElementData : public QObject
{
    Q_OBJECT
public:
    explicit GraphElementData(QObject *parent = 0);
    void setProperty(QString key, QString value);
    void unsetProperty(QString key);
    void setAtom(QString atom);
    void unsetAtom(QString atom);
    QString property(QString key);
    QString atom(QString atom);

signals:

public slots:
};

#endif // GRAPHELEMENTDATA_H