comparison framework/Document.h @ 423:f32a64149602 alignment_view

Make alignment using an external program asynchronous
author Chris Cannam
date Thu, 20 Nov 2014 15:46:19 +0000
parents 662aef012679
children b23db4cef02f
comparison
equal deleted inserted replaced
422:33fae747db7e 423:f32a64149602
29 class Layer; 29 class Layer;
30 class View; 30 class View;
31 class WaveFileModel; 31 class WaveFileModel;
32 32
33 class AdditionalModelConverter; 33 class AdditionalModelConverter;
34
35 class Align;
34 36
35 /** 37 /**
36 * A Sonic Visualiser document consists of a set of data models, and 38 * A Sonic Visualiser document consists of a set of data models, and
37 * also the visualisation layers used to display them. Changes to the 39 * also the visualisation layers used to display them. Changes to the
38 * layers and their layout need to be stored and managed in much the 40 * layers and their layout need to be stored and managed in much the
421 */ 423 */
422 typedef std::set<Layer *> LayerSet; 424 typedef std::set<Layer *> LayerSet;
423 LayerSet m_layers; 425 LayerSet m_layers;
424 426
425 bool m_autoAlignment; 427 bool m_autoAlignment;
428 Align *m_align;
426 }; 429 };
427 430
428 #endif 431 #endif