summaryrefslogtreecommitdiff
path: root/src/data/project.h
diff options
context:
space:
mode:
authorAleks Kissinger <aleks0@gmail.com>2018-01-26 22:34:15 +0900
committerAleks Kissinger <aleks0@gmail.com>2018-01-26 22:34:15 +0900
commit768e097abd17d07dd2748894b4dc1b09471dd6da (patch)
treec0b5a8774293d21ddace2c8afee8152bdd3a386c /src/data/project.h
parentd163561b49accb90dd9eb9028d9aa7c05266a539 (diff)
started implementing project loader
Diffstat (limited to 'src/data/project.h')
-rw-r--r--src/data/project.h21
1 files changed, 21 insertions, 0 deletions
diff --git a/src/data/project.h b/src/data/project.h
new file mode 100644
index 0000000..cbc2cb9
--- /dev/null
+++ b/src/data/project.h
@@ -0,0 +1,21 @@
+#ifndef PROJECT_H
+#define PROJECT_H
+
+#include "graphelementdata.h"
+
+#include <QObject>
+#include <QString>
+
+class Project : public QObject
+{
+ Q_OBJECT
+public:
+ explicit Project(QObject *parent = 0);
+ void addStyle(QString name, GraphElementData *properties);
+
+signals:
+
+public slots:
+};
+
+#endif // PROJECT_H