summaryrefslogtreecommitdiff
path: root/src/project.h
diff options
context:
space:
mode:
authorBent Bisballe Nyeng <deva@aasimon.org>2018-09-29 16:29:21 +0200
committerBent Bisballe Nyeng <deva@aasimon.org>2018-09-29 16:29:21 +0200
commit46efa2def1212dcb2610c545a78c8ab81bb22bbf (patch)
tree5bf8e1991126ba5795cdde44578a370a7a1b4a1f /src/project.h
parentc975247f9742bd7fcf5ae7d8ab174ed8728bb64c (diff)
Add main attribute to the filelist. Use QHash random seed hack in all places where QDomDocument is being used.
Diffstat (limited to 'src/project.h')
-rw-r--r--src/project.h4
1 files changed, 4 insertions, 0 deletions
diff --git a/src/project.h b/src/project.h
index b0f9060..a6593d8 100644
--- a/src/project.h
+++ b/src/project.h
@@ -54,12 +54,16 @@ public:
int getChannelMapId() const;
void setChannelMapId(int id);
+ bool getMainChannel() const;
+ void setMainChannel(bool main);
+
private:
friend class ProjectSerialiser;
QString file;
QString name;
int channel_map_id;
+ bool main_channel;
int id;
Instrument& instrument;