| 317 | } |
| 318 | |
| 319 | struct TimeLineKey |
| 320 | { |
| 321 | SequenceTime time; |
| 322 | bool isUserKey; |
| 323 | |
| 324 | explicit TimeLineKey(SequenceTime t, |
| 325 | bool isUserKey = false) |
| 326 | : time(t) |
| 327 | , isUserKey(isUserKey) |
| 328 | { |
| 329 | } |
| 330 | |
| 331 | explicit TimeLineKey() |
| 332 | : time(0) |
| 333 | , isUserKey(false) |
| 334 | { |
| 335 | } |
| 336 | }; |
| 337 | |
| 338 | struct TimeLineKey_compare |
| 339 | { |