diff src/Analyser.h @ 18:43ef22a44402

merged tonioni to default
author gyorgyf
date Sat, 13 Apr 2013 17:27:53 +0100
parents 50ab01b77262
children f4ee3c11eba9
line wrap: on
line diff
--- a/src/Analyser.h	Tue Mar 26 20:15:38 2013 +0000
+++ b/src/Analyser.h	Sat Apr 13 17:27:53 2013 +0100
@@ -19,12 +19,15 @@
 #include <QObject>
 
 #include "transform/Transform.h"
+#include "layer/LayerFactory.h" // GF: added so we can access the FlexiNotes enum value.
+
 
 class WaveFileModel;
 class Pane;
 class PaneStack;
 class Document;
 class Layer;
+class LayerFactory;
 
 class Analyser : public QObject
 {
@@ -43,6 +46,9 @@
     Pane *m_pane;
 
     Layer *addLayerFor(TransformId);
+    Layer *addLayerForNotes(TransformId);
+	LayerFactory::LayerType preferredLayer;
+
 };
 
 #endif