Mercurial > hg > svcore
comparison data/model/Path.h @ 1869:cb9209ef373a startup-timing
Merge from default branch
author | Chris Cannam |
---|---|
date | Tue, 16 Jun 2020 17:44:06 +0100 |
parents | 14bf9bf5ac28 |
children |
comparison
equal
deleted
inserted
replaced
1865:7b6e18380e8f | 1869:cb9209ef373a |
---|---|
26 { | 26 { |
27 PathPoint(sv_frame_t _frame) : | 27 PathPoint(sv_frame_t _frame) : |
28 frame(_frame), mapframe(_frame) { } | 28 frame(_frame), mapframe(_frame) { } |
29 PathPoint(sv_frame_t _frame, sv_frame_t _mapframe) : | 29 PathPoint(sv_frame_t _frame, sv_frame_t _mapframe) : |
30 frame(_frame), mapframe(_mapframe) { } | 30 frame(_frame), mapframe(_mapframe) { } |
31 | |
32 // "The path consists of a series of points, each with frame equal | |
33 // to the frame on the source model (aligned model) and mapframe | |
34 // equal to the frame on the target model (reference model). Both | |
35 // should be monotonically increasing." | |
31 | 36 |
32 sv_frame_t frame; | 37 sv_frame_t frame; |
33 sv_frame_t mapframe; | 38 sv_frame_t mapframe; |
34 | 39 |
35 void toXml(QTextStream &stream, QString indent = "", | 40 void toXml(QTextStream &stream, QString indent = "", |