diff transform/Transform.h @ 848:539740f231fa tonioni_multi_transform

Toward running multiple transforms (from same plugin + params) at once
author Chris Cannam
date Fri, 29 Nov 2013 15:43:50 +0000
parents 1b8c748fd7ea
children 06579b8ffb7b
line wrap: on
line diff
--- a/transform/Transform.h	Tue Nov 26 14:37:01 2013 +0000
+++ b/transform/Transform.h	Fri Nov 29 15:43:50 2013 +0000
@@ -25,6 +25,7 @@
 #include <QString>
 
 #include <map>
+#include <vector>
 
 typedef QString TransformId;
 
@@ -196,5 +197,7 @@
     float m_sampleRate;
 };
 
+typedef std::vector<Transform> Transforms;
+
 #endif