wintv remote control + kernel patch, add codec fileref, amp up OpenEDL, add loadmode...
[goodguy/cinelerra.git] / cinelerra-5.1 / cinelerra / clipedls.h
1 #ifndef __CLIP_EDLS_H__
2 #define __CLIP_EDLS_H__
3
4 #include "arraylist.h"
5 #include "edl.inc"
6
7 class ClipEDLs : public ArrayList<EDL*>
8 {
9 public:
10         ClipEDLs();
11         ~ClipEDLs();
12
13         void add_clip(EDL *clip);
14         void remove_clip(EDL *clip);
15 // Return copy of the src EDL which belongs to the current object.
16         EDL* get_nested(EDL *src);
17         void copy_nested(ClipEDLs &nested);
18         EDL* load(char *path);
19         void clear();
20         void update_index(EDL *clip);
21 };
22
23 #endif
24
25