comparison transform/Transform.h @ 874:862fe7b20df7 tony_integration

Merge from tonioni branch
author Chris Cannam
date Tue, 28 Jan 2014 15:01:54 +0000
parents 539740f231fa
children 06579b8ffb7b
comparison
equal deleted inserted replaced
862:786ee8d1f30e 874:862fe7b20df7
23 #include <vamp-hostsdk/PluginBase.h> 23 #include <vamp-hostsdk/PluginBase.h>
24 24
25 #include <QString> 25 #include <QString>
26 26
27 #include <map> 27 #include <map>
28 #include <vector>
28 29
29 typedef QString TransformId; 30 typedef QString TransformId;
30 31
31 class QXmlAttributes; 32 class QXmlAttributes;
32 33
194 RealTime m_startTime; 195 RealTime m_startTime;
195 RealTime m_duration; 196 RealTime m_duration;
196 float m_sampleRate; 197 float m_sampleRate;
197 }; 198 };
198 199
200 typedef std::vector<Transform> Transforms;
201
199 #endif 202 #endif
200 203