r974: configure: Check for presence of libtiff headers and libraries.
[cinelerra_cv.git] / cinelerra / recordlabel.h
blobcae6aaf64364417a7c31bc3440986c56d3fee56a
1 #ifndef RECORDLABELS_H
2 #define RECORDLABELS_H
4 #include "labels.inc"
5 #include "linklist.h"
8 class RecordLabel : public ListItem<RecordLabel>
10 public:
11 RecordLabel() {};
12 RecordLabel(double position);
13 ~RecordLabel();
15 double position;
19 class RecordLabels : public List<RecordLabel>
21 public:
22 RecordLabels();
23 ~RecordLabels();
25 int delete_new_labels();
26 int toggle_label(double position);
27 double get_prev_label(double position);
28 double get_next_label(double position);
29 double goto_prev_label(double position);
30 double goto_next_label(double position);
33 #endif